mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 15:38:28 +01:00
3acb4dc447
Added some backticks that where missing.
31 lines
335 B
Markdown
31 lines
335 B
Markdown
# tmux
|
|
|
|
> Multiplex several virtual consoles
|
|
|
|
- Start a new tmux session
|
|
|
|
`tmux`
|
|
|
|
- Start a new named tmux session
|
|
|
|
`tmux new -s {{name}}`
|
|
|
|
- List sessions
|
|
|
|
`tmux ls`
|
|
|
|
- Attach to a session
|
|
|
|
`tmux a`
|
|
|
|
- Attach to a named session
|
|
|
|
`tmux a -t {{name}}`
|
|
|
|
- Detach from session
|
|
|
|
`ctrl+b d`
|
|
|
|
- Kill session
|
|
|
|
`tmux kill-session -t {{name}}`
|