1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 22:57:33 +02:00

Tmux sessions and windows (#682)

* most basic tmux sessions and windows commands added

* Detach -> detach
This commit is contained in:
Tredecies 2018-11-07 21:55:40 +01:00 committed by chad d
parent d444d081d5
commit 82985172c5

18
tmux.md
View File

@ -8,7 +8,23 @@ title: tmux
-u # UTF8 mode
-S ~/.tmux.socket
$ tmux attach
#### Sessions
$ tmux new
$ tmux new -s session_name
$ tmux attach # Default session
$ tmux attach -s session_name
$ tmux switch -t session_name
$ tmux ls # List sessions
$ tmux detach
#### Windows
$ tmux new-window
### Help