2014-11-02 08:34:19 +00:00
|
|
|
# tmux
|
|
|
|
|
2023-12-28 10:12:36 +00:00
|
|
|
> Terminal multiplexer.
|
|
|
|
> It allows multiple sessions with windows, panes, and more.
|
|
|
|
> See also: `zellij`, `screen`.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://github.com/tmux/tmux>.
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-02-12 11:48:30 +00:00
|
|
|
- Start a new session:
|
2014-11-02 08:34:19 +00:00
|
|
|
|
|
|
|
`tmux`
|
|
|
|
|
2020-02-12 11:48:30 +00:00
|
|
|
- Start a new named session:
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
`tmux new -s {{name}}`
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-02-12 11:48:30 +00:00
|
|
|
- List existing sessions:
|
2014-11-02 08:34:19 +00:00
|
|
|
|
|
|
|
`tmux ls`
|
|
|
|
|
2020-02-12 11:48:30 +00:00
|
|
|
- Attach to the most recently used session:
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
`tmux attach`
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Detach from the current session (inside a tmux session):
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl>-B d`
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Create a new window (inside a tmux session):
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl>-B c`
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Switch between sessions and windows (inside a tmux session):
|
2014-11-02 08:34:19 +00:00
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl>-B w`
|
2018-01-27 08:16:07 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
- Kill a session by name:
|
2018-01-27 08:16:07 +00:00
|
|
|
|
2020-11-21 02:55:15 +00:00
|
|
|
`tmux kill-session -t {{name}}`
|