forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request tldr-pages#251 from AgIt0/master
Add tmux
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}} |