2014-11-02 10:34:19 +02:00
|
|
|
# tmux
|
|
|
|
|
2023-12-28 07:12:36 -03:00
|
|
|
> Terminal multiplexer.
|
|
|
|
> It allows multiple sessions with windows, panes, and more.
|
|
|
|
> See also: `zellij`, `screen`.
|
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-11-21 02:55:15 +00:00
|
|
|
`tmux new -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-11-21 02:55:15 +00:00
|
|
|
`tmux attach`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Detach from the current session (inside a tmux session):
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2023-12-29 17:02:08 +01:00
|
|
|
`<Ctrl>-B d`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Create a new window (inside a tmux session):
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2023-12-29 17:02:08 +01:00
|
|
|
`<Ctrl>-B c`
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Switch between sessions and windows (inside a tmux session):
|
2014-11-02 10:34:19 +02:00
|
|
|
|
2023-12-29 17:02:08 +01:00
|
|
|
`<Ctrl>-B w`
|
2018-01-27 09:16:07 +01:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Kill a session by name:
|
2018-01-27 09:16:07 +01:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
`tmux kill-session -t {{name}}`
|