-
-
Save akumbhani66/7607f03c18391b7c518f5be044b038d1 to your computer and use it in GitHub Desktop.
Tmux cheat sheet
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
1. Start new tmux session | |
tmux new -s [session_name] | |
2. List all session | |
tmux ls | |
2. Dive into session | |
tmux attach -t [session_name] | |
3. Exit the session without killing current session | |
Press ctrl+b then :detach | |
4. Kill the session | |
tmux kill-session [session_name] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment