Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 267 Bytes

linux-tool.md

File metadata and controls

26 lines (18 loc) · 267 Bytes

Linux Tool

tmux

#new screen
tmux new -t screen_name

#demon screen 
ctrl + b + d 

#restore window
tmux attach -t screen_name 

#switch screen 
ctrl + b + s 

#remove screen 
ctrl + d | `exit`

#remove all sessions
pkill -f tmux

#help
ctrl + b + ?