Skip to content

Instantly share code, notes, and snippets.

@carlosh93
Last active January 27, 2021 19:17
Show Gist options
  • Save carlosh93/0c683db14cb4aec6a84d7f9e57ca9073 to your computer and use it in GitHub Desktop.
Save carlosh93/0c683db14cb4aec6a84d7f9e57ca9073 to your computer and use it in GitHub Desktop.
Tmux commands #bash
# start a new session
tmux new -s geek-1
#detach session
ctrl + b + d
#list sessions
tmux ls
#attach to a session
tmux attach-session -t Privacy_HAR
#new window
ctrl + b + c
# prev and next window
ctrl + b + p / ctrl + b + n
# change between windows
ctrl + b + w
# quit windows
ctrl + b + x
#change between sessions
ctrl + b + s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment