Developer reference

tmux Cheatsheet

tmux session, window, and pane commands for terminal workflows.

New session

Start a named session.

tmux new -s work

Attach

Return to a session.

tmux attach -t work

List sessions

Show available sessions.

tmux ls

Detach

Detach from the current session.

Ctrl+b d

Related tools