tldr/pages/common/tmux.md

37 lines
618 B
Markdown
Raw Normal View History

2014-11-02 08:34:19 +00:00
# tmux
> Terminal multiplexer. It allows multiple sessions with windows, panes, and more.
> More information: <https://github.com/tmux/tmux>.
2014-11-02 08:34:19 +00:00
- Start a new session:
2014-11-02 08:34:19 +00:00
`tmux`
- Start a new named session:
2014-11-02 08:34:19 +00:00
`tmux new-session -s {{name}}`
2014-11-02 08:34:19 +00:00
- List existing sessions:
2014-11-02 08:34:19 +00:00
`tmux ls`
- Attach to the most recently used session:
2014-11-02 08:34:19 +00:00
`tmux attach-session`
2014-11-02 08:34:19 +00:00
- Attach to a named session:
2014-11-02 08:34:19 +00:00
`tmux attach-session -t {{name}}`
2014-11-02 08:34:19 +00:00
- Detach from the current session (with prefix Ctrl-B):
2014-11-02 08:34:19 +00:00
`Ctrl-B d`
2014-11-02 08:34:19 +00:00
- Kill a session by name:
2014-11-02 08:34:19 +00:00
`tmux kill-session -t {{name}}`
- Kill the current session (with prefix Ctrl-B):
`Ctrl-B :kill-session<Enter>`