Como já foi dito, a tela deve atender às suas necessidades.
Crie um arquivo de configuração de tela com esta aparência:
startupmessage off
split
split
screen -t top top # -t <title> <command>
screen -t netstat watch netstat -tanp
screen -t date watch date
select top # In the first screen show the screen titled 'top'
focus down # Focus down to next screen
select netstat # Show screen titled 'netstat'
focus down # Focus down to the next screen
select date # Show the screen titled date
Vamos chamar esse arquivo screen_run
. Então simplesmente execute a tela. A opção -c especifica o arquivo de configuração a ser usado:
screen -c screen_run
Se você quiser divisões verticais, poderá usar split -v
no lugar de split
.
Consulte o link para obter mais informações.