Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Killing tmux Sessions

This is from an old set of notes I found. Need to check out the kill all command to verify it's still accurate.

### Kill A Named Session

command
tmux kill-session -t $NAME_OF_SESSION

### Kill All Sessions from Command Line

command
tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill