1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 11:17:59 +01:00
tldr/pages/common/tmux.md

32 lines
335 B
Markdown
Raw Normal View History

2014-11-02 09:34:19 +01:00
# 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}}`
2014-11-02 09:34:19 +01:00
- Detach from session
`ctrl+b d`
- Kill session
`tmux kill-session -t {{name}}`