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:
List all shortcuts
to see all the shortcuts keys in tmux simply use the bind-key ? in my case that would be CTRL-B ?
Sessions
Windows (tabs)
Panes (splits)
Sync Panes
You can do this by switching to the appropriate window, typing your Tmux prefix (commonly Ctrl-B or Ctrl-A) and then a colon to bring up a Tmux command line, and typing:
Last updated
Was this helpful?