Friday, July 21, 2006

Playing with screen

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:, , , , ,

1 comment:

Willy Picard said...

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?