Skip to main content

Posts

Showing posts from 2021

Cheat Sheet :: Tmux

Working with Sessions New Session Start a New Session $> tmux new-session Or you can type $> tmux Or you can use the shorthand $> tmux new If you're already inside the tmux : new Start a New Session with the name mysession $> tmux new -s mysession : new -s mysession Kill/Delete Sessions Kill/Delete mysession $> tmux kill -session -t mysession Or you can use the shorthand $> tmux kill -ses -t mysession Kill/Delete all sessions but mysession $> tmux kill -session -a -t mysession Kill/Delete all sessions but the current session $> tmux kill -session -a Rename session If you're already inside the tmux Ctrl + b + $ Move Between Sessions Move to Previous Session // If you're already inside the tmux Ctrl + b + ( Move to Next Session // If you're already inside the tmux Ctrl + b + ) Attach to an Existing Session Attach to the Last Session $> tmux attach-session Or $> tmux attach O