Skip to content

Latest commit

 

History

History
50 lines (28 loc) · 384 Bytes

README.md

File metadata and controls

50 lines (28 loc) · 384 Bytes

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