Answers for "detach all tmux sessions"

2

tmux detach from session

ctrl + b then instantly press d
Posted by: Guest on August-30-2021
0

tmux kill all sessions

tmux list-sessions | awk 'BEGIN{FS=":"}{print $1}' | xargs -n 1 tmux kill-session -t
Posted by: Guest on February-14-2021

Browse Popular Code Answers by Language