Skip to content

Instantly share code, notes, and snippets.

@thomaslaurenson
Created July 22, 2024 20:46
Show Gist options
  • Save thomaslaurenson/47d3076b3d53c68ef6a61fe82b338924 to your computer and use it in GitHub Desktop.
Save thomaslaurenson/47d3076b3d53c68ef6a61fe82b338924 to your computer and use it in GitHub Desktop.
# 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