screen
screen unixcommand
Start a screen with a different name
screen -S session_name
Ctrl+a ?
is your friend...
Ctrl+a c
Create a new window (with shell)Ctrl+a "
List all windowCtrl+a 0
Switch to window 0 (by number )Ctrl+a A
Rename the current windowCtrl+a S
Split current region horizontally into two regionsCtrl+a |
Split current region vertically into two regionsCtrl+a tab
Switch the input focus to the next regionCtrl+a Ctrl+a
Toggle between the current and previous regionCtrl+a Q
Close all regions but the current oneCtrl+a X
Close the current region
screen -x [XXX]
multi screen attachscreen -ls
screen -r 10835
If a connection dropped
screen -D [xxx]
xxx is optional if there is only one screen
exit
from commandline
screen -x session_name
echo $TERM
will say screen
or echo $STY
or you can Ctrl+a ?
and you'll get a help menu or a ?
if you're not on a screen!