mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
Add tmux
This commit is contained in:
parent
011da19d1c
commit
d63d1a7b31
1 changed files with 31 additions and 0 deletions
31
pages/common/tmux.md
Normal file
31
pages/common/tmux.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# 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}}
|
Loading…
Add table
Reference in a new issue