mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-04 14:35:24 +02:00

* tmux: update Spanish translation Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * tmux: update page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
38 lines
629 B
Markdown
38 lines
629 B
Markdown
# tmux
|
|
|
|
> Terminal multiplexer.
|
|
> It allows multiple sessions with windows, panes, and more.
|
|
> See also: `zellij`, `screen`.
|
|
> More information: <https://github.com/tmux/tmux>.
|
|
|
|
- Start a new session:
|
|
|
|
`tmux`
|
|
|
|
- Start a new named session:
|
|
|
|
`tmux new -s {{name}}`
|
|
|
|
- List existing sessions:
|
|
|
|
`tmux ls`
|
|
|
|
- Attach to the most recently used session:
|
|
|
|
`tmux attach`
|
|
|
|
- Detach from the current session (inside a tmux session):
|
|
|
|
`Ctrl-B d`
|
|
|
|
- Create a new window (inside a tmux session):
|
|
|
|
`Ctrl-B c`
|
|
|
|
- Switch between sessions and windows (inside a tmux session):
|
|
|
|
`Ctrl-B w`
|
|
|
|
- Kill a session by name:
|
|
|
|
`tmux kill-session -t {{name}}`
|