To create a new session:
$ screen
To retrieve a session (when there is only one running):
$ screen -r -d
To retrieve the list of existing sessions:
$ screen -ls
To retrieve a session (when many are running):
$ screen -r -d <name of the session>
To clear dead sessions:
$ screen -wipe
To detach a session:
<CTRL-A> D
technorati tags:screen, freebsd, linux, sysutils, sessions, man

1 comment:
The only thing I have in my .screenrc is the following line:
startup_message off
Because the startup_message is the only thing that really annoys me with screen. What about your .screenrc file?
Post a Comment