Useful command
TMUX 명령어/Command 모음
ddokkddokk
2023. 3. 20. 13:20
반응형
Create Session
$ tmux # numbers starting from 0 automatically assigned to the created session for its name
or
$ tmux new -s [name]
Kill Session
$ tmux kill-session -t [name]
Hide & Visible Session
$ ctrl + b + d # hide
$ tmux attach -t [name] # visible
Check Current Sessions
$ tmux ls
Create a new tab on the current session
$ ctrl + b + c
Move to another tab
$ ctrl + b + [tab number]