mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
13 lines
279 B
Markdown
13 lines
279 B
Markdown
# Kill All Your tmux Sessions
|
|
|
|
If you have several tmux sessions running and you'd like to clean house, you
|
|
can kill all of those sessions with one command.
|
|
|
|
```bash
|
|
$ tmux kill-session -a
|
|
```
|
|
|
|
The `-a` flag says to target all sessions.
|
|
|
|
You can also run this as a tmux command.
|