Skip to content

Instantly share code, notes, and snippets.

@ryanseamons
Created February 16, 2013 21:56
Show Gist options
  • Save ryanseamons/4968908 to your computer and use it in GitHub Desktop.
Save ryanseamons/4968908 to your computer and use it in GitHub Desktop.
TMUX Fundamentals
#http://robots.thoughtbot.com/post/2641409235/a-tmux-crash-course
tmux new -s session_name
creates a new tmux session named session_name
tmux attach -t session_name
attaches to an existing tmux session named session_name
tmux switch -t session_name
switches to an existing session named session_name
tmux list-sessions
lists existing tmux sessions
tmux detach (prefix + d)
detach the currently attached session
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment