# ssh-multi # Based on http://linuxpixies.blogspot.jp/2011/06/tmux-copy-mode-and-how-to-control.html # a script to ssh multiple servers over multiple tmux panes multimux() { readarray hosts < "$1" tmux new-window "ssh $1@${hosts[0]}" unset hosts[0]; for i in "${hosts[@]}"; do tmux split-window -h "ssh $i" tmux select-layout tiled > /dev/null done tmux select-pane -t 0 tmux set-window-option synchronize-panes on > /dev/null }