-
-
Save thomaslaurenson/47d3076b3d53c68ef6a61fe82b338924 to your computer and use it in GitHub Desktop.
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
# New session | |
tmux new -s tunnel | |
# New window | |
C-b c | |
# Close window | |
C-b & | |
# Rename window | |
C-b , | |
# Windows navigate | |
C-b n #next | |
C-b p # previous | |
# Split window vertical | |
C-b % | |
# Split window horizontal | |
C-b " | |
# Navigate panes | |
C-b ARROWKEYS | |
# Detach | |
C-b d | |
# List sessions | |
tmux ls | |
# Attach to session | |
tmux a -t tunnel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment