Skip to content

Instantly share code, notes, and snippets.

@griver
griver / tmux_and_screen.md
Last active November 28, 2017 18:12 — forked from P7h/tmux_vs_screen.md
tmux vs screen commands

tmux and screen commands


Action tmux screen
start a new session tmux
tmux new
tmux new-session
screen
start a new session with a name tmux new -s name screen -S name
re-attach a detached session tmux attach
tmux attach-session
screen -r
re-attach a detached session with a name tmux attach -t name
tmux a -t name
screen -r name
re-attach an attached session (detaching it from elsewhere) tmux attach -dtmux attach-session -d screen -dr