Eu devo recomendar o tmux no seu caso, eu tenho meu tmux-setup-script
:
#!/bin/sh
tmux new-session -d -s rabin
tmux new-window -t rabin -n 'Server1' 'ssh [email protected]'
tmux new-window -t rabin -n 'Server2' 'ssh [email protected]'
tmux new-window -t rabin -n 'Server3' 'ssh [email protected]'
tmux new-window -t rabin -n 'Server4' 'ssh [email protected]'
tmux new-window -t rabin -n 'Server5' 'ssh [email protected]'
tmux select-window -t rabin:1
tmux -2 attach-session -t rabin
Eu também recomendo que você leia a Página wiki do Arch para uma boa opção que você pode definir em seu tmux.conf
arquivo.
Editar:
Você pode dividir a mesma janela em vários painéis,
# create a new session
tmux new-session -d -s XXX
# will split the window horizontally
tmux split-window -h -t XXX
# will split the window vertically
tmux split-window -t XXX
# select the LEFT panel in the current window
tmux select-pane -L -t XXX
tmux split-window -t XXX