tldr/pages/common/tmux.md
egilkh 3acb4dc447 Fix missing backticks
Added some backticks that where missing.
2014-11-04 14:44:44 +01:00

335 B

tmux

Multiplex several virtual consoles

  • Start a new tmux session

tmux

  • Start a new named tmux session

tmux new -s {{name}}

  • List sessions

tmux ls

  • Attach to a session

tmux a

  • Attach to a named session

tmux a -t {{name}}

  • Detach from session

ctrl+b d

  • Kill session

tmux kill-session -t {{name}}