Last active
August 29, 2015 14:05
-
-
Save hienvd/7ba3baa405156b433746 to your computer and use it in GitHub Desktop.
Tmux cheatsheet
This file contains hidden or 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
Manage Sessions | |
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 | |
Shortcut for: | |
attach -> -a | |
detach -> -d | |
list -> ls | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment