Quick round up of tmux commands
Command line options
List session and attach a session
tmux ls tmux attach -t target_session
Kill a session
tmux kill-session -t target_session
In tmux session,
Ctrl-b c: create a new window
Ctrl-b s: list sessions
Ctrl-b w: list windows
Ctrl-b &: kill the current window
Ctrl-b x: kill the current pane
Ctrl-b d: detach from the current session
Leave a Reply