Common Command
start
tmux
start with session name
tmux new -s <name>
attach
tmux a #
attach by name
tmux a -t <name>
show sessions list
tmux ls
kill session
tmux kill-session -t <name>
kill all the tmux sessions
tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length …
There are comments.