Skip to content

Instantly share code, notes, and snippets.

@Kishan033
Last active February 28, 2022 13:19
Show Gist options
  • Save Kishan033/b6558e810b709f844ef64a7489fe0e9b to your computer and use it in GitHub Desktop.
Save Kishan033/b6558e810b709f844ef64a7489fe0e9b to your computer and use it in GitHub Desktop.
Tmux cheat sheet
1. Start new tmux session
tmux new -s [session_name]
2. List all session
tmux ls
3. Dive into session
tmux attach -t [session_name]
4. Exit the session without killing current session
Press ctrl+b then :detach
5. 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