Created
February 16, 2013 21:56
-
-
Save ryanseamons/4968908 to your computer and use it in GitHub Desktop.
TMUX Fundamentals
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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