> sessions
16 commands for tmux sessions
// sessions
16 commandsStart a new session
$ tmuxStart a new session with the name mysession
$ tmux new -s mysessionStart a new session or attach to an existing session named mysession
$ tmux new-session -A -s mysessionAttach to last session
$ tmux aAttach to a session with the name mysession
$ tmux a -t mysessionShow all sessions
$ tmux lsSession and Window Preview
Ctrl + bw
Detach from session
Ctrl + bd
Choose which client to detach
Ctrl + bD
Move to previous session
Ctrl + b(
Move to next session
Ctrl + b)
Rename session
Ctrl + b$
kill/delete the current session
: kill-sessionkill/delete session mysession
$ tmux kill-ses -t mysessionkill/delete all sessions but the current
$ tmux kill-session -aKill tmux server and all sessions
$ tmux kill-server