Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 391 Bytes

tmux.md

File metadata and controls

42 lines (34 loc) · 391 Bytes

Create new session

tmux new -s <name>

Attach session

tmux attach

List sessions

tmux ls

Kill session

tmux kill-session -t <name>

Attach session by name

tmux a -t <name>

Detach

CTRL + b, d

Scroll

Ctrl and b, PgUp

Save output to file

Ctrl and b, :
capture-pane -S -99999
save-buffer <file>