2014-11-02 10:34:19 +02:00
|
|
|
# tmux
|
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
> Terminal multiplexer. It allows multiple sessions with windows, panes, and more.
|
2019-06-03 02:06:36 +02:00
|
|
|
> More information: <https://github.com/tmux/tmux>.
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Start a new session:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
|
|
|
`tmux`
|
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Start a new named session:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
`tmux new-session -s {{name}}`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- List existing sessions:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
|
|
|
`tmux ls`
|
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Attach to the most recently used session:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
`tmux attach-session`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Attach to a named session:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
`tmux attach-session -t {{name}}`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Detach from the current session (with prefix Ctrl-B):
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
`Ctrl-B d`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Kill a session by name:
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2014-11-04 14:44:44 +01:00
|
|
|
`tmux kill-session -t {{name}}`
|
2018-01-27 09:16:07 +01:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
- Kill the current session (with prefix Ctrl-B):
|
2018-01-27 09:16:07 +01:00
|
|
|
|
2020-02-12 04:48:30 -07:00
|
|
|
`Ctrl-B :kill-session<Enter>`
|