Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Latest commit

 

History

History

tmux

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

basic tmux usage


  • starting a new (named session):
tmux new -s my_session

  • detach the session with Ctrl-b + d.

  • list sessions with:
tmux ls

  • re-attach a session:
tmux attach-session -t my_session

  • reload a tmux config file:
tmux source-file ~/.tmux.conf

  • kill tmux
tmux kill-server