tmux
start new:
tmuxstart new with session name:
tmux new -s mynameattach:
tmux a # (or at, or attach)attach to named:
tmux a -t mynamelist sessions:
tmux lskill session:
tmux kill-session -t mynameKill all the tmux sessions:
tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs killIn tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then:
Sessions
:new<CR> new session
s list sessions
$ name sessionWindows (tabs)
Last updated
Was this helpful?