Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
tmux
/
New window
New window
tmux
Create a new window in current session
<prefix> c
⎘ copy
#tmux
more tmux
all 17 commands →
Rename window
<prefix> ,
Switch window by number
<prefix> 0-9
Enter copy mode
<prefix> [
Synchronize panes
tmux setw synchronize-panes on
Send command to all panes
tmux list-panes -s -F '#{session_name}:#{window_index}.#{pane_index}' | xargs -I{} tmux send-keys -t {} 'uptime' Enter