screen manager
with VT100/ANSI terminal emulation

screen [ -options ] [ cmd [ args ] ]
screen -r [[pid.]tty[.host]]
screen -r sessionowner/[[pid.]tty[.host]]

Examples:

screen -L /dev/tty.usbserial-FTFO9AFU 57600  # with screen.log.0
screen -L -h 500 /dev/tty.SLAB_USBtoUART 115200  # with scroll back ( ^a[ ) history 500 lines

Documentation tersified by DGerman.
Historial note: screen was written for use with a serial port, before X windows, MS Windows or other graphical window managers provided multi-process user interfaces. Much of the functionality provided by screen, is now available by opening multiple windows in a GUIs.
This document omitts some of the features that were previously very innovativate and important.

Full-screen text window manager that multiplexes a terminal between several processes (typically interactive shells).
Each virtual terminal provides the functions of a VT100.
There is a scrollback history buffer for each virtual terminal and
a copy-and-paste mechanism that allows moving text regions between windows.

When called, it creates a window with a shell.
Commands, prefixed with a command-character, permit :

  1. creating new (full-screen) windows with other programs in them
  2. killing existing windows,
  3. listing of windows,
  4. toggling output logging ,
  5. copy-and-paste between windows,
  6. viewing the scrollback history,
  7. switching between windows,
  8. etc.
  • Windows run independently.
  • Programs continue when their window is not visible and even when the screen session is detached from the user's terminal.
  • When a program terminates, screen closes that window and the display switches to the previous window; if none are left, screen exits.

    Keystrokes are sent to the program running in the current window.

    Commands begin with control-a (abbreviated ^a), and is followed by another keystroke.

    To create a new window type ^a c which starts a shell and switches to that window, regardless of the state of the process running in the current window.

    Create a new window with a custom command in it by first binding the command to a keystroke (in your .screenrc file or at the ^a : command line) and then using it just like the ^a c . In addition, new windows can be created by running a command like:

    screen emacs prog.c

    from a shell prompt within a previously created window. This will not run another copy of screen, but will supply the command name and its arguments to the window manager (specified in the $STY environment variable) who will use it to create the new window. The above example would start the emacs editor editing prog.c and switch to its window.

    1. Message Line
    2. Input Translation
    3. Environment Variables
    Enter: ^a ? to display list of commands

    COMMAND-LINE OPTIONS

    -L turn on output logging
    -h lines history scrollback buffer. Default 120 . kinda small.
    -r sessionowner |
    [pid.tty.host]
    resume a detached session. No other options (except combinations with -d|-D) may be specified.
    A prefix of pid.]tty.host may be needed to distinguish between multiple detached sessions.
    Specifying sessionowner is used to connect to another user's session which runs in multiuser mode,look for sessions in another user's directory, requires setuid-root.
    -x Attach to a non-detached screen session. (Multi display mode).
    -d -r Reattach a session and if necessary detach it first.
    -d -R Reattach a session and if necessary detach or even create it first.
    -d -RR Reattach a session and if necessary detach or create it.
    Use the first session if more than one session is available.
    -D -r Reattach a session. If necessary detach and logout remotely first.
    -D -R Attach here and now. If a session is running, then reattach.
    If necessary detach and logout remotely first.
    If it was not running create it and notify the user.
    -D -RR Attach here and now. just do it.
    Check the status of sessions with screen -list first.
    -d
    -D [pid.tty.host]
    detaches the elsewhere running session.
    The same as ^ad from screen's controlling terminal.
    Equivalent to the power detach key.
    Ignored if no session can be detached,
    -m -d Start in "detached" mode. creates a new session but doesn't attach to it for system startup scripts.
    -m -D Start in "detached" mode, doesn't fork a new process. The command exits if the session terminates.
    -ls
    -list
    lists pid.tty.host identifying screen sessions.
    screen -ls 
    There is a screen on:
        16393.ttys003.smackerPro    (Attached)
    1 Socket in /var/folders/f6/$TMPDIR/T/.screen.
    1. detached can be resumed with screen -r
    2. attached are running and have a controlling terminal.
    3. multi multiuser mode,
    4. unreachable either live on a different host or are dead
      unreachable session is considered dead, when its name matches either the name of the local host, or the specified parameter.
      -r [pid.tty.host] See -r for a description how to construct matches.
    5. dead should be thoroughly checked and removed with -wipe .
    -wipe [match] As with screen -ls, but removes destroyed sessions instead of marking them as dead
    An unreachable session is considered dead, when its name matches either the name of the local host, or the explicitly given parameter
    -q Suppress printing of error messages. In combination with -ls the exit value is :
    •   9 a directory without sessions.
    • 10 a directory with runzzz ning but not attachable sessions.
    • 11 (or more) 1 (or more) usable sessions. In combination with -r the exit value is as follows: 10 indicates that there is no session to resume.
    • 12 (or more) that there are 2 (or more) sessions to resume and you should specify which one to choose.
      In all other cases -q has no effect.
    -e cl bind character c as the command character.
    The character l when used immediately after the command character, transmitts the command character literaly.
    The default is ^a' (control + a + apostrophe),
    -e^a'  
    In a multiuser session all users added will start off with this command character.
    But when attaching to an already running session, this option changes only the command character of the attaching user.
    Equivalent to either the defescape or escape
    -f
    -fn
    -fa
    turns flow-control on
    off
    or "automatic switching mode". "defflow" .screenrc command.
    -i will cause the interrupt key (usually ^c) to interrupt the display immediately when flow-control is on.
    See the "defflow" .screenrc . The use of this option is discouraged.
    -l
    -ln
    turns login mode on
    off (for /etc/utmp updating). "deflogin" .screenrc command.
    -p number|name Preselect a window, to reattach to a specific window or
    to send a command via -X to a specific window.
    As with screen's select command, "-" selects the blank window.
    As a special case for reattach, "=" brings up the windowlist on the blank window.
    -m ignore $STY. creation of a new session even if screen is called from within another session
    -s shell sets the default shell , overrides $SHELL (or "/bin/sh" if not defined). "shell" .screenrc command.
    -S sessionname sessionname identifies the session in screen -list and screen -r actions. It substitutes the default [tty.host] suffix.
    -t name sets the title for the default shell or specified program. "shelltitle" .screenrc command.
    -U UTF-8 mode sets the default encoding for new windows
    -v output version .
    -X command Send command to a running screen session.
    Use -d or -r for attached or detached screen sessions.
    -a include all capabilities in each window's termcap
    -c file configuration file instead of $HOME/.screenrc
    -A Adapt the sizes of all windows to the size of the current terminal.
    By default, screen restores its old window sizes when attaching to resizable terminals (those with "WS" in its description, e.g. suncmd or some xterm).

    Default Key Bindings

    Screen commands consists of an escapchar defaulted to ^a followed by one other character.
    Lower-case commands can be entered as control characters (permitting holding down the control key for both) for example ^a^t for time (except ^a a),
    space following the ^A below is only for clarity and should not be entered
    ^a ^\quitKill all windows and terminate.
    ^a ?helpShow key bindings. i.e. these lines
    ^a rwrapToggle line-wrap
    ^a WwidthToggle 80/132 columns.
    ^a ttimeShow system information. For example: 15:36:12 Aug 05 smacpro 1.64 1.82 1.76 from uptime
    Multi window operations
    ^a ^wwindowslist of windows
    ^a *displayslist all currently attached displays.
    term-type   size         user interface           window
    ---------- ------- ---------- ----------------- ----------
    xterm-256c 140x36     dgerman@/dev/ttys000        0(bash)       rwx 
    ^a NnumberShow the Number (and title) of the current window.
    This is window 0 (tty.usbserial-FTFO9AFU).
    
    ^a "windowlist -b a list of all windows for selection.
    ^a 'selectPrompt for a window name or number to switch to.
    ^a 0select 0 
    ... ... select window number 0 - 9, or to the blank window.
    ^a 9select 9 
    ^a -select -
    ^a ^aotherToggle back to the window displayed previously.
    ^a space
    ^a 
    ^a h
    ^a p

    prev

    Switch to the previous window

    ^a nnextSwitch to the next window.
    Region operations
    ^a SsplitSplit the current region into two new ones.
    ^a FfitResize the window to the current region size.
    ^a tabfocusSwitch the input focus to the next region.
    ^a QonlyDelete all regions but the current one.
    ^a XremoveKill the current region.
    ^a ametaSend the command character (^a) to window. See escape command.
    ^a Atitlename current window.
    ^a Bpow_breakReopen the terminal line and send a break.
    ^a cscreenCreate a new window with a shell and switch to that window.
    ^a CclearClear the screen.
    ^a ddetachDetach screen from this terminal.
    ^a D Dpow_detach Detach and logout.
    ^a kkillcurrent window.
    ^a lredisplayFully refresh current window.
    ^a ^gvbellToggles screen's visual bell mode.

    ^a hhardcopyWrite a hardcopy of the current window to the file hardcopy.n
    ^a HlogBegins/ends logging of the current window to the file screenlog.n
    ^a iinfo (1,1)/(110,34) +100 +flow UTF-8 {RTS (CTS) DTR !DSR !CD } 0 (tty.serial-…)
    ^a LloginToggle this windows login slot. if screen is configured to update utmp
    ^a mlastmsgRepeat the last message displayed in the message line.
    ^a MmonitorToggles monitoring of the current window.
    ^a bbreakSend a break to window.
    ^a fflowToggle flow on, off or auto.
    ^a qxon^Q
    ^a sxoff^S
    ^a ^vdigraphEnter digraph.
    ^a xlockscreen Lock this terminal.
    ^a zsuspendSuspend screen
    ^a ZresetReset the virtual terminal to its "power-on" values.
    ^a .dumptermcap Write out a .termcap to $TMPDIR/T/.screen
    ^a [
    ^a esc

    copy

    Enter copy/scrollback mode.

    ^a ]paste
    ^a {
    ^a }historyCopy and paste a previous (command) line.
    ^a >writebufWrite paste buffer to a file.
    ^a <readbufReads the screen-exchange file into the paste buffer.
    ^a =removebufRemoves the file used by ^a < and ^a >
    ^a _silenceStart/stop monitoring the current window for inactivity.
    ^a ,license
    Screen version 4.00.03 (FAU) 23-Oct-06
    
    Copyright (c) 1993-2002 Juergen Weigert, Michael Schroeder
    Copyright (c) 1987 Oliver Laumann
    
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2, or (at your option) any later version.
    
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License along with this program (see the file COPYING); if not, write to the
    Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    
    Send bugreports, fixes, enhancements, t-shirts, money, beer & pizza to screen@uni-erlangen.de
    
    
    ^a vversionDisplay the version and compilation date.
    ^a :colonEnter command line mode.

    screen executes initialization commands from the files /usr/local/etc/screenrc and ~/.screenrc.

      These are the "programmer's defaults" that can be overridden by:
    1. for the global screenrc file screen searches for the environment variable $SYSSCREENRC (may be disabled at compile-time).
    2. The user specific screenrc file is searched in .$SCREENRC, then
    3. $HOME/.screenrc
    4. -c (config file) takes precedence over the above user screenrc files.

    These commands set options, bind functions to keys, and to automatically establish one or more windows at the beginning of your screen session.
    Commands are one per line, empty lines are ignored.
    A command's arguments are separated by tabs or spaces, and may be surrounded by single or double quotes.
    # rest of the line is a comment, except in quotes.
    Commands may contain references to environment variables. The syntax is the shelllike $VAR or ${VAR}.

    Configuration files are included as examples: etc/screenrc and etc/etcscreenrc

    Customization can also be done 'on-line'. To enter the command mode type ^a :.
    Commands starting with def change default values, while others change current settings.

    Commands

    activity message When any activity occurs in a background window that is being monitored, screen displays a notification in the message line.
    % in message is replaced by the number of the window in which activity has occurred,
    ^G is replaced by the definition for bell in your termcap (usually an audible bell).
    Monitoring is off for all windows by default, use "monitor" command ^a M to enable.
    Default: Activity in window %n
    allpartial on|off on: only the current cursor line is refreshed on window change
    Affects all windows and is useful for slow terminal lines.
    The previous setting of full/partial refresh for each window is restored with "allpartial off". This is a global flag that immediately takes effect on all windows overriding the "partial" settings.
    Does not change the default redraw behavior of newly created windows.
    altscreen on|off on: "alternate screen" support is enabled in virtual terminals, just like in xterm. Initially off.

    at [id][#|*|%] command [args … ] Execute a command at other displays or windows as if it had been entered there.
    "At" changes the context (the `current window' or `current display' setting) of the command.

    If id is non-unique , the command will be executed multiple times.
    With *, id is matched against user names. The command is executed once for each display of the selected user(s).
    With %, id is matched against displays. Displays are named after the ttys they attach. The prefix /dev/ or /dev/tty may be omitted from the identifier.
    With #, or nothing appended id is matched against window numbers and titles.

    Omitting id selects all users, displays or windows because a prefix-match is performed.

    On the affected display(s) a short message will describe what happened.
    Permission is checked for initiator of the "at" command, not for the owners of the affected display(s).
    '#' character works as a comment introducer when it is preceded by whitespace, escaped by prefixing a '\'.

    Caveat: When matching against windows, the command is executed at least once per window.
    Commands that change the internal arrangement of windows (like "other") may be called again. In shared windows the command will be repeated for each attached display.
    Beware, when issuing toggle commands like "login"! Some commands (e.g. "process") require that a display is associated with the target windows. These commands may not work correctly under "at" looping over windows.

    attrcolor attrib [attribute/color-modifier] Highlight attributes by changing the color of the text.
    If the attribute attrib is in use, the specified attribute/color modifier is also applied.
    If no modifier is given, the current one is deleted.
    See STRING ESCAPES for the syntax of the modifier.

    Two pseudo-attributes are used, "i" for foreground color and "I" for background

    Examples:

    If bold text is indicated use red. attrcolor b "R"
    If underline is indicated use blue text. attrcolor u "-u b"
    For bold text use bright colors. attrcolor b ".I"
    Make bright colored text also bold. attrcolor i "+b"
    autodetach on|off on: automatically detach upon hangup, saves running programs until they resumed with a -r .
    off: hangup signal will terminate screen and all the processes it contains.
    Default:on
    autonuke on|off clear screen sequence "nuke", purge buffers
    backtick id lifespan autorefresh cmd args
    backtick id
    Program the backtick command with the numerical id.
    The output of such a command is used for substitution of the "%`" string escape.
    lifespan seconds the output is considered valid. After this time, the command is run again if a corresponding string escape is encountered.

    autorefresh triggers an automatic refresh for caption and hardstatus strings after the specified number of seconds.
    Only the last line of output is used for substitution.
    If both the lifespan and the autorefresh parameters are zero, the backtick program is expected to stay in the background and generate output once in a while. In this case, the command is executed right away and screen stores the last line of output. If a new line gets printed screen will automatically refresh the hardstatus or the captions.

    The backtick id deletes the backtick command with the numerical id.

    bce [on|off]
    def bce on|off
    background-color-erase
    on: all characters cleared by an erase/insert/scroll/clear operation will be displayed in the current background color.
    off the default background color is used.
    bell_msg [msg] When a bell character is sent to a background window, displays a notification in the message line.
    % replaced by the number of the window to which a bell has been sent, and each occurrence of `^G' is replaced by the definition for bell in termcap (usually an audible bell). Default:
    Bell in window %n
    An empty message suppresses the message line (bell_msg "").

    Without parameter, the current message is shown.

    bind [-c class] key [command [args]] Bind a command to a key.
    key is either a single character, a two-character sequence of the form "^x" (meaning "^x"), a backslash followed by an octal number (specifying the ASCII code of the character), or a backslash followed by a second character, such as "\^" or "\\".
    With no command previous binding is removed.

    If a command class Use the "command" command to activate a class. Command classes can be used to create multiple command keys or multi-character bindings.

    examples:

    bind ' ' windows
    bind ^k
    bind k
    bind K kill
    bind ^f screen telnet foobar
    bind \033 screen -ln -t root -h 1000 9 su
    Binds the space key to the command that displays a list of windows in addition to a ^w"
    The next three lines remove the default kill binding for "^a ^k" and "^a k".Then binds "^a K" to the kill command (making it more ackward.).
    Then it binds "^f" to the command "create a window with a TELNET connection to foobar",
    and bind "escape" to the command that creates an non-login window with a.k.a. "root" in slot #9, with a superuser shell and a scrollback buffer of 1000 lines.
     bindkey "^B" command -c demo1
    bind -c demo1 0 select 10 bind -c demo1 1 select 11 bind -c demo1 2 select 12 binds "^b 0" select window 10, "^b 1" window 11, etc.
    bind -c demo2 0 select 10
    bind -c demo2 1 select 11
    bind -c demo2 2 select 12
    bind - command -c demo2
    Binds "^a - 0" select window 10, "^a - 1" window 11, etc.
    bindkey [-d] [-m] [-a] [[-k|-t] string [cmd args]] manages input translation tables.
    Entries in one of the tables tells screen how to react if a certain sequence of characters is encountered.
    There are three tables:
    1. one that should contain actions programmed by the user,
    2. one for the default actions used for terminal emulation and
    3. one for screen's copy mode to do cursor movement.
    See INPUT TRANSLATION for a list of default key bindings.
    -d modifies the default table,
    -m changes the copy mode table and
    with neither option the user table is selected.

    string is the sequence of characters to which an action is bound, either be a fixed string or a termcap keyboard capability name (selectable with the -k option).
    Some keys on a VT100 terminal can send a different string if application mode is turned on (e.g the cursor keys). Such keys have two entries in the translation table. Select the application mode entry by specifying -a.

    -t inter-character timing disabled, not if a termcap capability is used.
    Cmd can be any of screen's commands with an arbitrary number of args, if omitted the key-binding is removed from the table.

    Examples :
    Show all of the default key bindings. The application mode entries are marked with [A].

    bindkey -d

    Make the "F1" key switch to window one.

    bindkey -k k1 select 1

    Make "foo" an abbreviation of the word "barfoo". Timeout is disabled so that users can type slowly

    bindkey -t foo stuff barfoo
    Makes "^T" an escape character for key-bindings. If you did the above "stuff barfoo" binding, you can enter the word "foo" by typing "^Tfoo". If you want to insert a "^T" you have to press the key twice (i.e. escape the escape binding).
    bindkey "\024" mapdefault

    Make the F11 (not F1!) key an alternative screen escape (in addition to ^A).

    bindkey -k F1 command
    break [duration] Send a break signal for duration*0.25 seconds to this window. For non-Posix systems the time interval may be rounded up to full seconds. Most useful if a character device is attached to the window rather than a shell process (See also chapter "WINDOW TYPES"). The maximum duration of a break signal is limited to 15 seconds.
    breaktype [tcsendbreak|TIOCSBRK |TCSBRK] current window only. still behaves identical to "defbreaktype".
    with no parameter displays the break method for the current window.
    blanker Activate the screen blanker. First the screen is cleared. If no blanker program is defined, the cursor is turned off, otherwise, the program is started and it's output is written to the screen. The screen blanker is killed with the first keypress, the read key is discarded. This command is normally used together with the "idle" command.
    blankerprg [program argsi] Defines a blanker program. Disables the blanker program if no arguments are given.
    bufferfile [exchange-file] Change the filename used for reading and writing with the paste buffer. If the optional argument to the "bufferfile" command is omitted, the default setting ("/tmp/screenexchange") is reactivated. The following example will paste the system's password file into the screen window (using the paste buffer, where a copy remains):
    ^a : bufferfile /etc/passwd
    ^a < ^a ]
    ^a : bufferfile
    c1 [on|off] Change c1 code processing. "C1 on" tells screen to treat the input characters between 128 and 159 as control functions. Such an 8-bit code is normally the same as ESC followed by the corresponding 7-bit code. The default setting is to process c1 codes and can be changed with the "defc1" command. Users with fonts that have usable characters in the c1 positions may want to turn this off.
    caption always|splitonly [string] caption string [string] This command controls the display of the window captions. Normally a caption is only used if more than one window is shown on the display (split screen mode). But if the type is set to always screen shows a caption even if only one window is displayed. The default is splitonly. The second form changes the text used for the caption. You can use all escapes from the "STRING ESCAPES" chapter. Screen uses a default of `%3n %t'. You can mix both forms by providing a string as an additional argument.
    charset set Change the current character set slot designation and charset mapping. The first four character of set are treated as charset designators while the fifth and sixth character must be in range '0' to '3' and set the GL/GR charset mapping. On every position a '.' may be used to indicate that the corresponding charset/mapping should not be changed (set is padded to six characters internally by appending '.' chars). New windows have "BBBB02" as default charset, unless a "encoding" command is active. The current setting can be viewed with the "info" command.
    chdir [directory] Change the current directory of screen to the specified directory or, if called without an argument, to your home directory (the value of the environment variable $HOME). All windows that are created by means of the "screen" command from within ".screenrc" or by means of "^ a : screen ..." or "^a c" use this as their default directory. Without a chdir command, this would be the directory from which screen was invoked. Hardcopy and log files are always written to the window's default directory, not the current directory of the process running in the window. You can use this command multiple times in your .screenrc to start various windows in different default directories, but the last chdir value will affect all the windows you create interactively.
    clear Clears the current window and saves its image to the scrollback buffer.
    colon [prefix] Allows you to enter ".screenrc" command lines. Useful for on-the-fly modification of key bindings, specific window creation and changing settings. Note that the "set" keyword no longer exists! Usually commands affect the current window rather than default settings for future windows. Change defaults with commands starting with 'def...'. If you consider this as the `Ex command mode' of screen, you may regard "^a esc" (copy mode) as its `Vi command mode'.
    command [-c class] This command has the same effect as typing the screen escape character (^A). It is probably only useful for key bindings. If the "-c" option is given, select the specified command class. See also "bind" and "bindkey".
    compacthist [on|off] suppress trailing blank lines when scrolling up text into the history buffer.
    console [on|off] Grabs or un-grabs the machines console output to a window. Note: Only the owner of /dev/console can grab the console output. This command is only available if the machine supports the ioctl TIOCCONS.
    copy Enter copy/scrollback mode. copy text from the current window and its history into the paste buffer. In this mode a vi-like `full screen editor' is active: Movement keys:
    • h, j, k, l move the cursor line by line or column by column.
    • 0, ^ and $ move to the leftmost column, to the first or last non-whitespace character on the line.
    • H, M and L move the cursor to the leftmost column of the top, center or bottom line of the window.
    • + and - positions one line up and down.
    • G moves to the specified absolute line (default: end of buffer).
    • | moves to the specified absolute column.
    • w, b, e move the cursor word by word.
    • B, E move the cursor WORD by WORD (as in vi).
    • ^u and ^d scroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).
    • ^b and ^f scroll the display up/down a full screen.
    • g moves to the beginning of the buffer.
    • % jumps to the specified percentage of the buffer.
    Emacs style movement keys can be customized by a .screenrc command. (E.g. markkeys "h=^B:l=^F:$=^E") There is no simple method for a full emacs-style keymap, as this involves multi-character codes.
    Marking: The copy range is specified by setting two marks. The text between these marks will be highlighted. Press space to set the first or second mark respectively. Y and y used to mark one whole line or to mark from start of line. W marks exactly one word.
    Repeat count: Any of these commands can be prefixed with a repeat count number by pressing digits 0..9 which is taken as a repeat count. Example: "^a ^[ H 10 j 5 Y" will copy lines 11 to 15 into the paste buffer.
    Searching: / Vi-like search forward. ? Vi-like search backward. ^a s Emacs style incremental search forward. ^r Emacs style reverse i-search.
    Specials: some keys that act differently than in vi. Vi does not allow one to yank rectangular blocks of text, but screen does. Press
    • c or C to set the left or right margin respectively. If no repeat count is given, both default to the current cursor position.
      Example: Try this on a rather full text screen: "^a [ M 20 l SPACE c 10 l 5 j C SPACE".

      This moves one to the middle line of the screen, moves in 20 columns left, marks the beginning of the paste buffer, sets the left column, moves 5 columns down, sets the right column, and then marks the end of the paste buffer. Now try:
      "^a [ M 20 l SPACE 10 l 5 j SPACE"

      and notice the difference in the amount of text copied.

    • J joins lines. It toggles between 4 modes: lines separated by a newline character (012), lines glued seamless, lines separated by a single whitespace and comma separated lines. Note that you can prepend the newline character with a carriage return character, by issuing a "crlf on".
    • v is for all the vi users with ":set numbers" - it toggles the left margin between column 9 and 1. Press a before the final space key to toggle in append mode. Thus the contents of the paste buffer will not be overwritten, but is appended to.
    • A toggles in append mode and sets a (second) mark.
    • > sets the (second) mark and writes the contents of the paste buffer to the screenzzzexchange file (/tmp/screen-exchange per default) once copy-mode is finished. This example demonstrates how to dump the whole scrollback buffer to that file: "^A [ g SPACE G $ >".
    • ^g gives information about the current line and column.
    • x exchanges the first mark and the current cursor position. You can use this to adjust an already placed mark.
    • @ does nothing. Does not even exit copy mode.
    All keys not described here exit copy mode.
    copy_reg [key] No longer exists, use "readreg" instead.
    crlf [on|off] affects the copying of text regions with ^a [ .
    on lines will be separated by the two character sequence `CR' - `LF'.
    Otherwise (default) only `LF' is used.
    When no parameter is given, the state is toggled.
    debug on|off if compiled with option -DDEBUG debugging available and is turned on per default. Note that this command only affects debugging output from the main "SCREEN" process correctly. Debug output from attacher processes can only be turned off once and forever.
    detach [-h] Detach the screen session (disconnect it from the terminal and put it into the background).
    Returns you to the shell where you invoked screen.
    A detached screen can be resumed by invoking screen with -r (see also section "COMMAND-LINE OPTIONS"). The -h option tells screen to immediately close the connection to the terminal ("hangup").
    dinfo Useful if you want to know why features like color or the alternate charset don't work.
    displays Shows a tabular listing of all currently connected user front-ends (displays). useful for multiuser sessions.
    digraph [preset] prompts for a digraph sequence.
    The next two characters typed are looked up in a builtin table and the resulting character is inserted in the input stream.
    For example, enter 'a"', an a-umlaut will be inserted.
    A 0 leadin prefixes up to three as an octal digits .
    The optional argument preset is treated as user input, thus one can create an "umlaut" key. For example the command "bindkey ^K digraph '"'" enables the user to generate an a-umlaut by typing CTRL-K a.
    dumptermcap dump termcap entry for the virtual terminal optimized for the currently active window to the .termcap" in $HOME/.screen (or wherever screen stores its sockets. See the "FILES" section below). This termcap entry is identical to the value of the environment variable $TERMCAP that is set up by screen for each window. For terminfo based systems you will need to run a converter like captoinfo and then compile the entry with tic.
    echo [-n] message a 'message of the day'. Typically installed in a global /local/etc/screenrc. The option "-n" may be used to suppress the line feed. See also "sleep". Echo is also useful for online checking of environment variables.
    encoding enc [enc] interpret the input/output. The first argument sets the encoding of the current window. Each window can emulate a different encoding. The optional second parameter overwrites the encoding of the connected terminal. It should never be needed as screen uses the locale setting to detect the encoding. There is also a way to select a terminal encoding depending on the terminal type by using the "KJ" termcap entry. Supported encodings are eucJP, SJIS, eucKR, eucCN, Big5, GBK, KOI8-R, CP1251, UTF-8, ISO8859-2, ISO8859-3, ISO8859-4, ISO8859-5, ISO8859-6, ISO8859-7, ISO8859-8, ISO8859-9, ISO8859-10, ISO8859-15, jis. See also "defencoding", which changes the default setting of a new window.
    escape xy Set the command character to x and the character generating a literal command character (by triggering the "meta" command) to y (similar to the -e option). Each argument is either a single character, a two-character sequence of the form "^x" (meaning "^x"), a backslash followed by an octal number (specifying the ASCII code of the character), or a backslash followed by a second character, such as "\^" or "\\". The default is "^Aa".
    eval command1 [command2 ...] Parses and executes each argument as separate command.
    exec [[fdpat] newcommand [args ...]] Run a unix subprocess (specified by an executable path newcommand and its optional arguments) in the current window.
    The flow of data between newcommands stdin/stdout/stderr, the process originally started in the window (let us call it "application-process") and screen itself (window) is controlled by the filedescriptor pattern fdpat.
    This pattern is basically a three character sequence representing stdin, stdout and stderr of newcommand.
    A dot (.) connects the file descriptor to screen.
    An exclamation mark (!) causes the file descriptor to be connected to the application-process.
    A colon (:) combines both. User input will go to newcommand unless newcommand receives the application-process' output (fdpats first character is `!' or `:') or a pipe symbol (|) is added (as a fourth character) to the end of fdpat.
    Invoking exec without arguments shows name and arguments of the currently running subprocess in this window.
    Only one subprocess a time can be running in each window.
    When a subprocess is running the `kill' command will affect it instead of the windows process.
    Refer to the postscript file doc/fdpat.ps for a confusing illustration of all 21 possible combinations. Each drawing shows the digits 2,1,0 representing the three file descriptors of newcommand.
    The box marked `W' is the usual pty that has the application-process on its slave side.
    The box marked `P' is the secondary pty that now has screen at its master side.

    Abbreviations:
    Whitespace between the word `exec' and fdpat and the command can be omitted.
    Trailing dots and a fdpat consisting only of dots can be omitted.
    A simple `|' is synonymous for the pattern `!..|';
    exec can be replaced by !. Examples:

    exec ... /bin/sh exec /bin/sh !/bin/sh
    Creates another shell in the same window, while the original shell is still running. Output of both shells is displayed and user input is sent to the new /bin/sh.
    exec !.. stty 19200 exec ! stty 19200 !!stty 19200
    Set the speed of the window's tty. If your stty command operates on stdout, then add another `!'.
    exec !..| less |less
    This adds a pager to the window output. The special character | is needed to give the user control over the pager although it gets its input from the window's process. This works, because less listens on stderr (a behavior that screen would not expect without the `|') when its stdin is not a tty. Less versions newer than 177 fail miserably here; good old pg still works.
    !:sed -n s/.*Error.*/\007/p
    Sends window output to both, the user and the sed command. The sed inserts an additional bell character (oct. 007) to the window output seen by screen. This will cause "Bell in window x" messages, whenever the string "Error" appears in the window.
    fit Change the window size to the size of the current region. This command is needed because screen doesn't adapt the window size automatically if the window is displayed more than once.
    flow [on|off|auto] Sets the flow-control mode for this window. Without parameters it cycles the current window's flow-control setting from "automatic" to "on" to "off". See the discussion on "FLOWCONTROL" later on in this document for full details and note, that this is subject to change in future releases. Default is set by `defflow'.
    focus [up|down|top|bottom] Move the input focus to the next region. This is done in a cyclic way so that the top region is selected after the bottom one. If no subcommand is given it defaults to `down'. `up' cycles in the opposite order, `top' and `bottom' go to the top and bottom region respectively. Useful bindings are (j and k as in vi)
        bind j focus down
               bind k focus up
               bind t focus top
               bind b focus bottom
    gr [on|off] character with the 8th bit set, it will use the charset stored in the GR slot and print the character with the 8th bit stripped.
    The default (see also "defgr") is not to process GR switching because otherwise the ISO88591 charset would not work.
    hardcopy [-h] [file] Writes out the currently displayed image to the file, default: hardcopy.n in the default directory, where n is the number of the current window.
    appends or overwrites the file if it exists. See below.
    If the option -h is specified, dump also the contents of the scrollback buffer.
    hardcopy_append on|off append to the "hardcopy.n" files created by the command "^a h" . Default is `off'.
    hardcopydir directory
    hardstatus [on|off]
    hardstatus [always]lastline|message|ignore [string]
    hardstatus string [string]
    configures the use and emulation of the terminal's hardstatus line.
    The first form toggles whether screen will use the hardware status line to display messages. If the flag is set to `off', these messages are overlaid in reverse video mode at the display line. The default setting is `on'.

    The second form tells screen what to do if the terminal doesn't have a hardstatus line (i.e. the termcap/terminfo capabilities "hs", "ts", "fs" and "ds" are not set). If the type "lastline" is used, screen will reserve the last line of the display for the hardstatus. "message" uses screen's message mechanism and "ignore" tells screen never to display the hardstatus. If you prepend the word "always" to the type (e.g., "alwayslastline"), screen will use the type even if the terminal supports a hardstatus.

    The third form specifies the contents of the hardstatus line. '%h' is used as default string, i.e. the stored hardstatus of the current window (settable via "ESC]0;^G" or "ESC_ESC\") is displayed. You can customize this to any string you like including the escapes from the "STRING ESCAPES" chapter. If you leave out the argument string, the current string is displayed.

    You can mix the second and third form by providing the string as additional argument.

    height [-w|-d] [lines [cols]] Set the display height to a specified number of lines.
    When no argument is given it toggles between 24 and 42 lines display.
    specify a width to change both values.
    -w leave the display size unchanged and just set the window size, -d vice versa.
    help [-c class] showing key bindings.
    all the internal commands followed by their current bindings.
    custom commands, one command per key.
    space returns to exit early.
    If the "-c" option is given, display all bound commands for the specified command class. See also "DEFAULT KEY BINDINGS" section.
    history Usually users work with a shell that allows easy access to previous commands. For example csh has the command "!!" to repeat the last command executed. Screen allows you to have a primitive way of re-calling "the command that started ...": You just type the first letter of that command, then hit `^a {' and screen tries to find a previous line that matches with the `prompt character' to the left of the cursor. This line is pasted into this window's input queue. Thus you have a crude command history (made up by the visible window and its scrollback buffer).
    hstatus status Change the window's hardstatus line to the string status.
    idle [timeout [cmd args]] Sets a command that is run after the specified number of seconds inactivity is reached. This command will normally be the "blanker" command to create a screen blanker, but it can be any screen command. If no command is specified, only the timeout is set. A timeout of zero (ot the special timeout off) disables the timer. If no arguments are given, the current settings are displayed.
    ignorecase [on|off] ignore the case in searches. Default is `off'.
    info Uses the message line to display some information about the current window: the cursor position in the form "(column,row)" starting with "(1,1)", the terminal width and height plus the size of the scrollback buffer in lines, like in "(80,24)+50", the current state of window XON/XOFF flow control is shown like this (See also section FLOW CONTROL):
    • +flow automatic flow control, currently on.
    • -flow automatic flow control, currently off.
    • +(+)flow flow control enabled. Agrees with automatic control.
    • -(+)flow flow control disabled. Disagrees with automatic control.
    • +(-)flow flow control enabled. Disagrees with automatic control.
    • -(-)flow flow control disabled. Agrees with automatic control.
    The current line wrap setting (`+wrap' indicates enabled, `-wrap' not) is also shown. The flags `ins', `org', `app', `log', `mon' or `nored' are displayed when the window is in insert mode, origin mode, application-keypad mode, has output logging, activity monitoring or partial redraw enabled.

    The currently active character set (G0, G1, G2, or G3) and in square brackets the terminal character sets that are currently designated as G0 through G3 is shown. If the window is in UTF-8 mode, the string "UTF-8" is shown instead.

    Additional modes depending on the type of the window are displayed at the end of the status line (See also chapter "WINDOW TYPES"). If the state machine of the terminal emulator is in a non-default state, the info line is started with a string identifying the current state. For system information use the "time" command.

    ins_reg [key] No longer exists, use "paste" instead.
    kill current window.
    If there is an `exec' command running then it is killed. Otherwise the process (shell) running in the window receives a HANGUP condition, the window structure is removed and screen (your display) switches to another window. When the last window is destroyed, screen exits. After a kill screen switches to the previously displayed window. Note: Emacs users should keep this command in mind, when killing a line. It is recommended not to use "^a" as the screen escape key or to rebind kill to "^a K".
    lastmsg Redisplay the last contents of the message/status line. Useful if typing when a message appears, because the message goes away when a key (unless your terminal has a hardware status line). Refer to the commands "msgwait" and "msgminwait" for fine tuning.
    license Display the disclaimer page. This is done whenever screen is started without options, which should be often enough. See also the "startup_message" command.
    lockscreen Call a screenlock program (/local/bin/lck or /usr/bin/lock or a builtin if no other is available).
    Screen does not accept any command keys until this program terminates.
    processes in the windows continue, as the windows are in the `detached' state.
    The screenlock program may be changed through the environment variable $LOCKPRG (which must be set in the shell from which screen is started) and is executed with the user's uid and gid. Warning: When you leave other shells unlocked and you have no password set on screen, the lock is void: One could easily re-attach from an unlocked shell. This feature should rather be called `lockterminal'.
    log [on|off] Start/stop writing output of the current window to a file "screenlog.n" in the window's default directory, where n is the number of the current window. This filename can be changed with the `logfile' command. If no parameter is given, the state of logging is toggled. The session log is appended to the previous contents of the file if it already exists. The current contents and the contents of the scrollback history are not included in the session log. Default is `off'.
    logfile filename
    logfile flush secs
    default screenlog.%n
    The second form changes the number of seconds screen will wait before flushing the logfile buffer to the file-system. default 10 seconds.
    login [on|off] Adds or removes the entry in the utmp database file for the current window.
    This controls if the window is `logged in'. When no parameter is given, the login state of the window is toggled. Additionally to that toggle, it is convenient having a `log in' and a `log out' key. E.g. `bind I login on' and `bind O login off' will map these keys to be ^a I and ^a O. The default setting (in config.h.in) should be "on" for a screen that runs under suidroot. Use the "deflogin" command to change the default login state for new windows. Both commands are only present when screen has been compiled with utmp support.
    logtstamp [on|off]
    logtstamp after [secs]
    logtstamp string [string]
    controls logfile time-stamp mechanism of screen. If time-stamps are turned "on", screen adds a string containing the current time to the logfile after two minutes of inactivity. When output continues and more than another two minutes have passed, a second time-stamp is added to document the restart of the output. You can change this timeout with the second form of the command. The third form is used for customizing the time-stamp string (`-- %n:%t -- time-stamp -- %M/%d/%y %c:%s --\n' by default).
    mapdefault next input character should only be looked up in the default bindkey table. See also "bindkey".
    mapnotnext Like mapdefault, but ignore in the default bindkey table.
    maptimeout [timo] Set the inter-character timer for input sequence detection to a timeout of timo ms. The default timeout is 300ms. Maptimeout with no arguments shows the current setting. See also "bindkey".
    markkeys string method of changing the keymap used for copy/history mode. The string is made up of oldchar=newchar pairs which are separated by `:'. Example: The string "B=^B:F=^F" will change the keys `^b' and `^f' to the vi style binding (scroll up/down fill page). This happens to be the default binding for `B' and `F'. The command "markkeys h=^B:l=^F:$=^E" would set the mode for an emacs-style binding. If your terminal sends characters, that cause you to abort copy mode, then this command may help by binding these characters to do nothing. The no-op character is `@' and is used like this: "markkeys @=L=H" if you do not want to use the `H' or `L' commands any longer. As shown in this example, multiple keys can be assigned to one function in a single statement.
    maxwin num may only be decreased.
    meta Insert the command character (^a) in the current window's input stream.
    monitor [on|off] When monitoring is turned on and an affected window is switched into the background, you will receive the activity notification message in the status line at the first sign of output and the window will also be marked with an `@' in the window-status display. Monitoring is initially off for all windows.
    msgminwait sec delays a new message when one message is currently displayed. default 1 second.
    msgwait sec time a message is displayed if screen is not disturbed by other activity. default 5 seconds.
    multiuser on|off Switch between singleuser and multiuser mode.
    Standard screen operation is singleuser.
    In multiuser mode the commands `acladd', `aclchg', `aclgrp' and `acldel' can be used to enable (and disable) other users accessing this screen session.
    nethack on|off Changes the kind of error messages used by screen. As in the game "nethack", messages often blur the facts , but are much funnier to read.
    standard messages often tend to be unclear as well.
    only available if compiled with the NETHACK flag .
    The default setting is then determined by the presence of the environment variable $NETHACKOPTIONS.
    next next window, repeatedly to cycle through the list of windows.
    prev next lower numbered window. used repeatedly to cycle through the list of windows.
    nonblock [on|off|numsecs]
    def nonblock on|off|numsecs
    to deal with user interfaces (displays) that cease to accept output. This can happen if a user presses ^S or a TCP/modem connection gets cut but no hangup is received.
    If nonblock is off (this is the default) screen waits until the display restarts to accept the output. If nonblock is on, screen waits until the timeout is reached (on is treated as 1s).
    If the display still doesn't receive characters, screen will consider it "blocked" and stop sending characters to it. If at some time it restarts to accept characters, screen will unblock the display and redisplay the updated window contents.
    number [n] Change the current windows number. If the given number n is already used by another window, both windows exchange their numbers. If no argument is specified, the current window number (and title) is shown.
    obuflimit [limit] If the output buffer contains more bytes than the specified limit, no more data will be read from the windows. The default value is 256. If you have a fast display (like xterm), you can set it to some higher value. If no argument is specified, the current setting is displayed.
    other Switch to the window displayed previously. If this window does no longer exist, other has the same effect as next.
    only Kill all regions but the current one.
    partial on|off Defines whether the display should be refreshed (as with redisplay) after switching to the current window. This command only affects the current window. To immediately affect all windows use the allpartial command. Default is `off', of course. This default is fixed, as there is currently no defpartial command.
    password [crypted_pw] Present a crypted password in .screenrc and to resume a detached.
    useful if you have privileged programs running under screen and you want to protect your session from reattach attempts by another user masquerading as your uid (i.e. any superuser.)
    If no crypted password is specified, screen prompts twice for typing a password and places its encryption in the paste buffer.
    Default is `none', this disables password checking.
    paste [registers [dest_reg]] Write the (concatenated) contents of the specified registers to the stdin queue of the current window.
    The register '.' is treated as the paste buffer.
    If no parameter is given the user is prompted for a single register to paste. The paste buffer can be filled with the copy, history and readbuf commands.
    Other registers can be filled with register, readreg and paste .
    If paste is called with a second argument, the contents of the specified registers is pasted into the named destination register rather than the window.
    If '.' is used as the second argument, the displays paste buffer is the destination.
    Note paste uses a wide variety of resources: Whenever a second argument is specified no current window is needed. When the source specification only contains registers (not the paste buffer) then there need not be a current display (terminal attached), as the registers are a global resource. The paste buffer exists once for every user.
    pastefont [on|off] include font information in the paste buffer. default no.
    This command is especially useful for multi character fonts like kanji.
    pow_break Reopen the window's terminal line and send a break condition. See `break'.
    pow_detach Power detach. Mainly the same as detach, but also sends a HANGUP signal to the parent process of screen. CAUTION: This will result in a logout, when screen was started from your login shell.
    pow_detach_msg [message] The message specified here is output whenever a `Power detach' was performed.
    used as a replacement for a logout message or to reset baud rate, etc. Without parameter, the current message is shown.
    printcmd [cmd] If cmd is not an empty string, screen will not use the terminal capabilities "po/pf" if it detects an ansi print sequence ESC [ 5 i, but pipe the output into cmd.
    Should normally be a command like "lpr" or "'cat > /tmp/scrprint'".
    without a command displays the current setting.
    The ansi sequence ESC \ ends printing and closes the pipe.
    Warning: other user have write access to your terminal, they will be able to fire off print commands.
    process [key] Stuff the contents of the specified register into screen's input queue.
    If no argument is given you are prompted for a register name.
    The text is parsed as if it had been typed in from the user's keyboard.
    Used to bind multiple actions to a single key.
    quit Kill all windows and terminate screen. Note that on VT100-style terminals the keys ^4 and ^\ are identical. This makes the default bindings dangerous: Be careful not to type ^a ^4 when selecting window no. 4. Use the empty bind command (as in "bind '^\'") to remove a key binding.
    readbuf [-e encoding] [filename] Reads the contents of the specified file into the paste buffer.
    If no file is specified, the screen-exchange filename is used. See also "bufferfile" command.
    readreg [-e encoding] [register [filename]] zero or one arguments it it duplicates the paste buffer contents into the register specified or entered at the prompt.
    With two arguments it reads the contents of the named file into the register, just as readbuf reads the screen-exchange file into the paste buffer.
    The following example will paste the system's password file into the screen window (using register p, where a copy remains):
    ^a : readreg p /etc/passwd ^a : paste p
    redisplay
    register [-e encoding] key string Save the string to the register key. See paste
    remove Kill the current region. This is a no-op if there is only one region.
    removebuf Unlinks the screen-exchange file used by the commands "writebuf" and "readbuf".
    reset Reset the virtual terminal to its "power-on" values. Useful when strange settings (like scroll regions or graphics character set) are left over from an application.
    resize [+|-|=|max|min] N current region. The space will be removed from or added to the region below or if there's not enough space from the region above.
    • +N increase current region height by N
    • -N decrease current region height by N
    • N set current region height to N
    • = make all windows equally high
    • max current region height
    • min current region height
    screen [-opts] [n] [cmd [args]] Establish a new window.
    The flow-control (-f, -fn and -fa),
    title (a.k.a.) (-t),
    login (-l and -ln) ,
    terminal type (-T ),
    the all-capability-flag (-a) and
    scrollback (-h ) may be specified with each command.
    (-M) turns monitoring on for this window.
    (-L) turns output logging on for this window.
    If an number n the window number n is assigned to the newly created window (or, if this number is already in-use, the next available number).
    If a command is specified after "screen", this command (with the given arguments) is started in the window; otherwise, a shell is created. Thus, if your ".screenrc" contains the lines
    
                       # example for .screenrc:
                       screen 1
                       screen -fn -t foobar -L 2 telnet foobar
    
    creates a shell window (in window #1) and a window with a TELNET connection to the machine foobar (with no flow-control using the title "foobar" in window #2) and will write a logfile ("screenlog.2") of the telnet session. Note, that unlike previous versions of screen no additional default window is created when "screen" commands are included in your ".screenrc" file. When the initialization is completed, screen switches to the last window specified in your .screenrc file or, if none, opens a default window #0. Screen has built in some functionality of "cu" and "telnet". See also chapter "WINDOW TYPES".
    scrollback lines Set the size of the scrollback buffer for the current windows . default 100 lines. See also the "defscrollback" command and use "^a i" to view the current setting.
    select [WindowID] Switch to the window identified by WindowID. This can be a prefix of a window title (alphanumeric window name) or a window number. The parameter is optional and if omitted, you get prompted for an identifier. When a new window is established, the first available number is assigned to this window. Thus, the first window can be activated by "select 0". The number of windows is limited at compile-time by the MAXWIN configuration parameter. There are two special WindowIDs, "-" selects the internal blank window and "." selects the current window. The latter is useful if used with screen's "-X" option.
    sessionname [name] Rename the current session. Note, that for "screen -list" the name shows up with the process-id prepended. If the argument "name" is omitted, the name of this session is displayed. Caution: The $STY environment variables still reflects the old name. This may result in confusion. The default is constructed from the tty and host names.
    setenv [var [string]] Set the environment variable var to value string. If only var is specified, the user will be prompted to enter a value. If no parameters are specified, the user will be prompted for both variable and value. The environment is inherited by all subsequently forked shells.
    setsid [on|off] Normally screen uses different sessions and process groups for the windows. If setsid is turned off, this is not done anymore and all windows will be in the same process group as the screen backend process. This also breaks job-control, so be careful. The default is on, of course. This command is probably useful only in rare circumstances.
    shell command command to be used to create a new shell. overrides the value of the environment variable $SHELL.
    Useful to run a tty-enhancer which is expecting to execute the program specified in $SHELL. If the command begins with a '-' character, the shell will be started as a login-shell.
    shelltitle title title for all shells created during startup or by the ^A ^c command. For details about what a title is, see the discussion entitled "TITLES (naming windows)".
    silence [on|off|sec] set silence monitoring of windows. When silence is turned on and an affected window is switched into the background, you will receive the silence notification message in the status line after a specified period of inactivity (silence).
    default timeout can be changed with the `silencewait' command or by specifying a number of seconds instead of `on' or `off'. Silence is initially off for all windows.
    silencewait sec Define the time that all windows monitored for silence should wait before displaying a message. Default 30 seconds.
    sleep seconds pause the execution of .screenrc . Keyboard activity will end the sleep. It may be used to give users a chance to read the messages output by "echo".
    slowpaste msec Define the speed at which text is inserted into the current window by the paste ("^a ]") command.
    If the slowpaste value is nonzero text is written character by character. screen will make a pause of msec milliseconds after each single character write to allow the application to process its input. Only use slowpaste if your underlying system exposes flow control problems while pasting large amounts of text.
    source file Read and execute commands from file
    . Source commands may be nested to a maximum recursion level of ten. If file is not an absolute path and screen is already processing a source command, the parent directory of the running source command file is used to search for the new command file before screen's current directory.

    Note that termcap/terminfo/termcapinfo commands only work at startup and reattach time, so they must be reached via the default screenrc files to have an effect.

    sorendition [attr [color]] Change highlighting for text marking and printing messages. See the "STRING ESCAPES" chapter for the syntax of the modifiers. The default is currently "=s dd" (standout, default colors).
    split the current region into two new ones. All regions on the display are resized to make room for the new region. The blank window is displayed on the new region. Use the "remove" or the "only" command to delete regions.
    startup_message on|off copyright notice during startup. Default `on',
    stuff string in the input buffer of the current window. like paste but with much less overhead. You cannot paste large buffers with the "stuff" command. It is most useful for key bindings. See also "bindkey".
    su [username [password [password2]] Substitute the user of a display.
    The command prompts for all parameters that are omitted. If passwords are specified as parameters, they have to be specified un-crypted. The first password is matched against the systems passwd database, the second password is matched against the screen password as set with the commands "acladd" or "password". "Su" may be useful for the screen administrator to test multiuser setups. When the identification fails, the user has access to the commands available for user nobody. These are "detach", "license", "version", "help" and "displays".
    suspend windows are in the `detached' state, while screen is suspended. This feature relies on the shell being able to do job control.
    term term In each window's environment screen opens, the $TERM variable is set to "screen" by default. But when no description for "screen" is installed in the local termcap or terminfo data base, you set $TERM to - say - "vt100". This won't do much harm, as screen is VT100/ANSI compatible. The use of the "term" command is discouraged for non-default purpose. That is, one may want to specify special $TERM settings (e.g. vt100) for the next "screen rlogin othermachine" command. Use the command "screen -T vt100 rlogin othermachine" rather than setting and resetting the default.
    termcap term terminal-tweaks [window-tweaks] terminfo term terminal-tweaks [window-tweaks] termcapinfo term terminal-tweaks [window-tweaks] Use this command to modify your terminal's termcap entry without going through all the hassles involved in creating a custom termcap entry. Plus, you can optionally customize the termcap generated for the windows. You have to place these commands in one of the screenrc startup files, as they are meaningless once the terminal emulator is booted. If your system works uses the terminfo database rather than termcap, screen will understand the `terminfo' command, which has the same effects as the `termcap' command. Two separate commands are provided, as there are subtle syntactic differences, e.g. when parameter interpolation (using `%') is required. Note that termcap names of the capabilities have to be used with the `terminfo' command. In many cases, where the arguments are valid in both terminfo and termcap syntax, you can use the command `termcapinfo', which is just a shorthand for a pair of `termcap' and `terminfo' commands with identical arguments.

    The first argument specifies which terminal(s) should be affected by this definition. You can specify multiple terminal names by separating them with `|'s. Use `*' to match all terminals and `vt*' to match all terminals that begin with "vt".

    Each tweak argument contains one or more termcap defines (separated by `:'s) to be inserted at the start of the appropriate termcap entry, enhancing it or overriding existing values. The first tweak modifies your terminal's termcap, and contains definitions that your terminal uses to perform certain functions. Specify a null string to leave this unchanged (e.g. ''). The second (optional) tweak modifies all the window termcaps, and should contain definitions that screen understands (see the "VIRTUAL TERMINAL" section). Some examples:

    termcap xterm* LP:hs@
    Informs screen that all terminals that begin with `xterm' have firm auto-margins that allow the last position on the screen to be updated (LP), but they don't really have a status line (no 'hs' - append `@' to turn entries off). Note that we assume `LP' for all terminal names that start with "vt", but only if you don't specify a termcap command for that terminal.
    termcap vt* LP termcap vt102|vt220 Z0=\E[?3h:Z1=\E[?3l
    Specifies the firm-margined `LP' capability for all terminals that begin with `vt', and the second line will also add the escape-sequences to switch into (Z0) and back out of (Z1) 132-character-per-line mode if this is a VT102 or VT220. (You must specify Z0 and Z1 in your termcap to use the width-changing commands.)
    termcap vt100 "" l0=PF1:l1=PF2:l2=PF3:l3=PF4
    This leaves your vt100 termcap alone and adds the function key labels to each window's termcap entry.
    termcap h19|z19 am@:im=\E@:ei=\EO dc=\E[P
    Takes a h19 or z19 termcap and turns off auto-margins (am@) and enables the insert mode (im) and end-insert (ei) capabilities (the `@' in the `im' string is after the `=', so it is part of the string). Having the `im' and `ei' definitions put into your terminal's termcap will cause screen to automatically advertise the character-insert capability in each window's termcap. Each window will also get the delete-character capability (dc) added to its termcap, which screen will translate into a line-update for the terminal (we're pretending it doesn't support character deletion).

    If you would like to fully specify each window's termcap entry, you should instead set the $SCREENCAP variable prior to running screen. See the discussion on the "VIRTUAL TERMINAL" in this manual, and the termcap(5) man page for more information on termcap definitions.

    time [string] Uses the message line to display the time of day, the host name, and the load averages over 1, 5, and 15 minutes (if this is available on your system). For window specific information use "info".

    If a string is specified, it changes the format of the time report like it is described in the "STRING ESCAPES" chapter. Screen uses a default of "%c:%s %M %d %H%? %l%?".

    title [windowtitle] current window . If no name is specified, screen prompts for one. This command was known as `aka' in previous releases.
    unsetenv var Unset an environment variable.
    utf8 [on|off [on|off]] If utf8 is enabled, the strings sent to the window will be UTF-8 encoded and vice versa. Omitting the parameter toggles the setting. If a second parameter is given, the display's encoding is also changed (this should rather be done with screen's "-U" option). See also "defutf8", which changes the default setting of a new window.
    vbell [on|off] Omitting the parameter toggles the setting. If vbell is switched on, but your terminal does not support a visual bell, a `vbell-message' is displayed in the status line when the bell character (^G) is received. Visual bell support of a terminal is defined by the termcap variable `vb' (terminfo: 'flash'). Per default, vbell is off, thus the audible bell is used. See also `bell_msg'.
    vbell_msg [message] output to the status line if the window receives a bell character (^G), vbell is set to "on", but the terminal does not support a visual bell. The default message is "Wuff, Wuff!!". Without parameter, the current message is shown.
    vbellwait sec a delay in seconds after each display of screen's visual bell message. default 1 second.
    verbose [on|off] on, the command name is echoed, whenever a window is created (or resurrected from zombie state). Default is off. Without parameter, the current setting is shown.
    version
    wall message Write a message to all displays. The message will appear in the terminal's status line.
    width [-w|-d] [cols [lines]] Toggle the window width between 80 and 132 columns or set it to cols columns if an argument is specified. This requires a capable terminal and the termcap entries "Z0" and "Z1". See the "termcap" command for more information. You can also specify a new height if you want to change both values. The -w option tells screen to leave the display size unchanged and just set the window size, -d vice versa.
    windowlist [-b] [-m]
    windowlist string [string]
    windowlist title [title]
    Display all windows in a table for visual window selection. The desired window can be selected via the standard movement keys (see the "copy" command) and activated via the return key.
    If -b is given, screen will switch to the blank window before presenting the list, so that the current window is also selectable.
    The -m changes the order of the windows, instead of sorting by window numbers screen uses its internal most-recently-used list.

    The table format can be changed with the string and title option, the title is displayed as table heading, while the lines are made by using the string setting. The default setting is "Num Name%=Flags" for the title and "%3n %t%=%f" for the lines. See the "STRING ESCAPES" chapter for more codes (e.g. color settings).

    windows Uses the message line to display a list of all the windows.
    Each window is listed by number with the name of process that has been started in the window (or its title); the current window is marked with a `*'; the previous window is marked with a `-'; all the windows that are "logged in" are marked with a `$'; a background window that has received a bell is marked with a `!'; a background window that is being monitored and has had activity occur is marked with an `@'; a window which has output logging turned on is marked with `(L)'; windows occupied by other users are marked with `&'; windows in the zombie state are marked with `Z'. If this list is too long to fit on the terminal's status line only the portion around the current window is displayed.
    wrap [on|off] When line-wrap is on, the second consecutive printable character output at the last column of a line will wrap to the start of the following line. As an added feature, backspace (^H) will also wrap through the left margin to the previous line. Default is `on'.
    writebuf [-e encoding] [filename] Writes the contents of the paste buffer to the specified file, or the public accessible screen-exchange file if no filename is given. This is thought of as a primitive means of communication between screen users on the same host. If an encoding is specified the paste buffer is recoded on the fly to match the encoding. The filename can be set with the bufferfile command and defaults to "/tmp/screen-exchange".
    writelock [on|off|auto]
    def writelock on|off|auto
    In addition to access control lists, not all users may be able to write to the same window at once. Per default, writelock is in `auto' mode and grants exclusive input permission to the user who is the first to switch to the particular window. When he leaves the window, other users may obtain the writelock (automatically). The writelock of the current window is disabled by the command "writelock off". If the user issues the command "writelock on" he keeps the exclusive write permission while switching to other windows.
    xoff xon Insert a CTRL-s / CTRL-q character to the stdin queue of the current window.
    zmodem [off|auto|catch|pass]
    zmodem sendcmd [string]
    zmodem recvcmd [string]
    Define zmodem support for screen. Screen understands two different modes when it detects a zmodem request: "pass" and "catch". If the mode is set to "pass", screen will relay all data to the attacher until the end of the transmission is reached. In "catch" mode screen acts as a zmodem endpoint and starts the corresponding rz/sz commands. If the mode is set to "auto", screen will use "catch" if the window is a tty (e.g. a serial line), otherwise it will use "pass". You can define the templates screen uses in "catch" mode via the second and the third form. Note also that this is an experimental feature.
    zombie [keys]
    defzombie [keys]
    Per default screen windows are removed from the window list as soon as the windows process (e.g. shell) exits.
    When a string of two keys is specified to the zombie command, `dead' windows will remain in the list. The kill command may be used to remove such a window. Pressing the first key in the dead window has the same effect. When pressing the second key, screen will attempt to resurrect the window. The process that was initially running in the window will be launched again. Calling zombie without parameters will clear the zombie setting, thus making windows disappear when their process exits. As the zombie-setting is manipulated globally for all windows, this command should only be called defzombie. Until we need this as a per window setting, the commands zombie and defzombie are synonymous.
    commands that affect defaults
    def c1 on|off as the c1 command except that the default setting for new windows is changed. Initial setting is `on'.
    def autonuke on|off Same as the autonuke command except that the default setting for new displays is changed. Initial setting is `off'. Note that you can use the special `AN' terminal capability if you want to have a dependency on the terminal type.
    def breaktype [tcsendbreak|TIOCSBRK |TCSBRK] Choose one of the available methods of generating a break signal for terminal devices. The preferred methods are tcsendbreak and TIOCSBRK. The third, TCSBRK, blocks the complete screen session for the duration of the break, but it may be the only way to generate long breaks. Tcsendbreak and TIOCSBRK may or may not produce long breaks with spikes (e.g. 4 per second). This is not only system dependant, this also differs between serial board drivers. Calling "defbreaktype" with no parameter displays the current setting.
    def charset [set] Like the charset command except that the default setting for new windows is changed. Shows current default if called without argument.
    def escape xy Set the default command characters. This is equivalent to the "escape" except that it is useful multiuser sessions only. In a multiuser session "escape" changes the command character of the calling user, where "defescape" changes the default command characters for users that will be added later.
    def flow on|off|auto [interrupt] Same as the flow command except that the default setting for new windows is changed. Initial setting is `auto'. Specifying "defflow auto interrupt" is the same as the command-line options -fa and -i.
    def gr on|off Same as the gr command except that the default setting for new windows is changed. Initial setting is `off'.
    def hstatus [status] The hardstatus line that all new windows will get is set to status. This command is useful to make the hardstatus of every window display the window number or title or the like. Status may contain the same directives as in the window messages, but the directive escape character is '^E' (octal 005) instead of '%'. This was done to make a misinterpretation of program generated hardstatus lines impossible. If the parameter status is omitted, the current default string is displayed. Per default the hardstatus line of new windows is empty.
    def encoding enc Same as the encoding command except that the default setting for new windows is changed. Initial setting is the encoding taken from the terminal.
    def log on|off Same as the log command except that the default setting for new windows is changed. Initial setting is `off'.
    def login on|off Same as the login command except that the default setting for new windows is changed. This is initialized with `on' as distributed (see config.h.in).
    def mode mode The mode of each newly allocated pseudo-tty is set to mode. Mode is an octal number. When no "defmode" command is given, mode 0622 is used.
    def monitor on|off Same as the monitor command except that the default setting for new windows is changed. Initial setting is `off'.
    def obuflimit limit Same as the obuflimit command except that the default setting for new displays is changed. Initial setting is 256 bytes. Note that you can use the special 'OL' terminal capability if you want to have a dependency on the terminal type.
    def scrollback num Same as the scrollback command except that the default setting for new windows is changed. Initial setting is 100.
    def shell command Synonym to the shell command.
    def silence on|off Same as the silence command except that the default setting for new windows is changed. Initial setting is `off'.
    def slowpaste msec" Same as the slowpaste command except that the default setting for new windows is changed. Initial setting is 0 milliseconds, meaning `off'.
    acladd usernames [crypted-pw]
    addacl usernames
    Enable users to fully access this screen session. Usernames can be one user or a comma separated list of users. This command enables to attach to the screen session and performs the equivalent of `aclchg usernames +rwx "#?"'. executed. To add a user with restricted access, use the `aclchg' command below. If an optional second parameter is supplied, it should be a crypted password for the named user(s). `Addacl' is a synonym to `acladd'. Multi user mode only.
    aclchg usernames permbits list
    chacl usernames permbits list
    Change permissions for a comma separated list of users. Permission bits are represented as `r', `w' and `x'. Prefixing `+' grants the permission, `-' removes it. The third parameter is a comma separated list of commands and/or windows (specified either by number or title). The special list `#' refers to all windows, `?' to all commands. if usernames consists of a single `*', all known users are affected. A command can be executed when the user has the `x' bit for it. The user can type input to a window when he has its `w' bit set and no other user obtains a writelock for this window. Other bits are currently ignored. To withdraw the writelock from another user in window 2: `aclchg username -w+w 2'. To allow readonly access to the session: `aclchg username -w "#"'. As soon as a user's name is known to screen he can attach to the session and (per default) has full permissions for all command and windows. Execution permission for the acl commands, `at' and others should also be removed or the user may be able to regain write permission. Rights of the special username nobody cannot be changed (see the "su" command). `Chacl' is a synonym to `aclchg'. Multi user mode only.
    acldel username Remove a user from screen's access control list. If currently attached, all the user's displays are detached from the session. He cannot attach again. Multi user mode only.
    aclgrp username [groupname] Creates groups of users that share common access rights. The name of the group is the username of the group leader. Each member of the group inherits the permissions that are granted to the group leader. That means, if a user fails an access check, another check is made for the group leader. A user is removed from all groups the special value "none" is used for groupname. If the second parameter is omitted all groups the user is in are listed.
    aclumask [[users]+bits |[users]-bits … ]
    umask [[users]+bits |[users]-bits … ]
    specifies the access other users have to windows that will be created by the caller of the command. Users may be no, one or a comma separated list of known usernames. If no users are specified, a list of all currently known users is assumed. Bits is any combination of access control bits allowed defined with the "aclchg" command. The special username "?" predefines the access that not yet known users will be granted to any window initially. The special username "??" predefines the access that not yet known users are granted to any command. Rights of the special username nobody cannot be changed (see the "su" command). `Umask' is a synonym to `aclumask'.
    def utf8 on|off Same as the utf8 command except that the default setting for new windows is changed. Initial setting is `on' if screen was started with "-U", otherwise `off'.
    def wrap on|off Same as the wrap command except that the default setting for new windows is changed. Initially line-wrap is on and can be toggled with the "wrap" command ("^a r") or by means of "^a : wrap on|off".
    def zombie [keys] Synonym to the zombie command. Both currently change the default. See there.

    THE MESSAGE LINE

    Screen displays informational messages and other diagnostics in a message line. While this line is distributed to appear at the bottom of the screen, it can be defined to appear at the top of the screen during compilation. If your terminal has a status line defined in its termcap, screen will use this for displaying its messages, otherwise a line of the current screen will be temporarily overwritten and output will be momentarily interrupted. The message line is automatically removed after a few seconds delay, but it can also be removed early (on terminals without a status line) by beginning to type.

    The message line facility can be used by an application running in the current window by means of the ANSI Privacy message control sequence. For instance, from within the shell, try something like:

    echo '␛^Hello world from window '$WINDOW'␛\\'
    where ␛ is an escape, ^ is a literal up-arrow, and \\ turns into a single backslash.

    WINDOW TYPES

    Screen provides three different window types. New windows are created with screen's screen command (see also the entry in chapter "CUSTOMIZATION"). The first parameter to the screen command defines which type of window is created. The different window types are all special cases of the normal type. They have been added in order to allow screen to be used efficiently as a console multiplexer with 100 or more windows.
    1. The normal window contains a shell (default, if no parameter is given) or any other system command that could be executed from a shell (e.g. slogin, etc...)
    2. If a tty (character special device) name (e.g. "/dev/ttya") is specified as the first parameter, then the window is directly connected to this device.
      This window type is similar to "screen cu -l /dev/ttya".
      Read and write access is required on the device node, an exclusive open is attempted on the node to mark the connection line as busy.
      An optional parameter is allowed consisting of a comma separated list of flags in the notation used by stty(1):
      baud_rate 300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 56000, 57600 and 115200. This affects transmission as well as receive speed.
      cs8 or cs7 Specify the transmission of eight (or seven) bits per byte.
      ixon or -ixon Enables (or disables) software flow-control (CTRL-S/CTRL-Q) for sending data.
      ixoff or -ixon Enables (or disables) software flow-control for receiving data.
      istrip or -istrip Clear (or keep) the eight bit in each received byte.
      Specify as many of these options as applicable. Unspecified options cause the terminal driver to choose values of the connection. These values are system dependant and may be in defaults or values saved from a previous connection.

      For tty windows, the info command shows some of the modem control lines in the status line. These may include `RTS', `CTS', 'DTR', `DSR', `CD' and more. This depends on the available ioctl()'s and system header files as well as the on the physical capabilities of the serial board. Signals that are logical low (inactive) have their name preceded by an exclamation mark (!), otherwise the signal is logical high (active). Signals not supported by the hardware but available to the ioctl() interface are usually shown low. When the CLOCAL status bit is true, the whole set of modem signals is placed inside curly braces ({ and }). When the CRTSCTS or TIOCSOFTCAR bit is set, the signals `CTS' or `CD' are shown in parenthesis, respectively.

      For tty windows, break causes the Data transmission line (TxD) to go low for a specified period of time. This is interpreted as the break signal . No data is sent and no modem control line is change.d

    3. If the first parameter is "//telnet", the second parameter is a host name, and an may specify a TCP port number (default 23). Screen will connect to a server listening on the remote host and use the telnet protocol. For telnet windows, the command info shows details about the connection in square brackets ([ and ]) at the end of the status line.
                b      BINARY. The connection is in binary mode.  
                e      ECHO. Local echo is disabled.  
                c      SGA. The connection is in `character mode' (default: `line mode').  
                t      TTYPE. The terminal type has been requested by the remote host.  Screen sends  the
                       name "screen" unless instructed otherwise (see also the command `term').  
                w      NAWS. The remote site is notified about window size changes.  
                f      LFLOW.  The  remote  host  will  send  flow  control information.  (Ignored at the moment.)
      
      Additional flags for debugging are x, t and n (XDISPLOC, TSPEED and NEWENV).

      For telnet windows, the command break sends the telnet code IAC BREAK (decimal 243) to the remote host.

      This window type is only available if screen was compiled with the BUILTIN_TELNET option defined.

      `A

      STRING ESCAPES Screen provides an escape mechanism to insert information like the current time into messages or file names.
      The escape character is '%' with one exception: inside of a window's hardstatus '^%' ('^E') is used instead.
      % the escape character itself
      a either 'am' or 'pm'
      A either 'AM' or 'PM'
      c current time HH:MM in 24h format
      C current time HH:MM in 12h format
      d day number
      D weekday name
      f flags of the window
      F sets %? to true if the window has the focus
      h hardstatus of the window
      H hostname of the system
      l current load of the system
      m month number
      M month name
      n window number
      s seconds
      t window title
      u all other users on this window
      w all window numbers and names. With '-' quailifier: up to the current window; with '+' qualifier: starting with the window after the current one.
      W all window numbers and names except the current one
      y last two digits of the year number
      Y full year number
      ? the part to the next '%?' is displayed only if a '%' escape inside the part expands to a non-empty string
      : else part of '%?'
      = pad the string to the display's width (like TeX's hfill). If a number is specified, pad to the percentage of the window's width. A '0' qualifier tells screen to treat the number as absolute position. You can specify to pad relative to the last absolute pad position by adding a '+' qualifier or to pad relative to the right margin by using '-'. The padding truncates the string if the specified position lies before the current position. Add the 'L' qualifier to change this.
      < same as '%=' but just do truncation, do not fill with spaces > mark the current text position for the next truncation. When screen needs to do truncation, it tries to do it in a way that the marked position gets moved to the specified percentage of the output area. (The area starts from the last absolute pad position and ends with the position specified by the truncation operator.) The 'L' quali fier tells screen to mark the truncated parts with '...'.
      { attribute/color modifier string terminated by the next "}"
      ` Substitute with the output of a 'backtick' command. The length qualifier is misused to identify one of the commands. The 'c' and 'C' escape may be qualified with a '0' to make screen use zero instead of space as fill character. The '0' qualifier also makes the '=' escape use absolute positions. The 'n' and '=' escapes understand a length qualifier (e.g. '%3n'), 'D' and 'M' can be prefixed with 'L' to generate long names, 'w' and 'W' also show the window flags if 'L' is given. An attribute/color modifier is is used to change the attributes or the color settings. Its format is "[attribute modifier] [color description]". The attribute modifier must be prefixed by a change type indicator if it can be confused with a color desciption. The following change types are known:
    4. + add the specified set to the current attributes
    5. - remove the set from the current attributes
    6. ! invert the set in the current attributes
    7. = change the current attributes to the specified set The attribute set can either be specified as a hexadecimal number or a combination of :
             d  dim     u underline      b bold    r reverse  s standout     B blinking
      
      Colors are coded either as a hexadecimal number or two letters specifying the desired background and foreground color (in that order). The following colors are known:
        k black  r  red   g  green   y  yellow   b blue   m  magenta  c cyan   w  white    d default color
             .      leave color unchanged
      
    8. The capitalized versions of the letter specify bright colors. You can also use the pseudocolor 'i' to set just the brightness and leave the color unchanged.
      A one digit/letter color description is treated as foreground or background color dependant on the current attributes: if reverse mode is set, the background color is changed instead of the foreground color. If you don't like this, prefix the color with a ".". If you want the same behaviour for two-letter color descriptions, also prefix them with a ".". As a special case, "%{-}" restores the attributes and colors that were set before the last change was made (i.e. pops one level of the color-change stack).
             Examples:
      
             "G"    set color to bright green
      
             "+b r" use bold red
      
             "= yd" clear all attributes, write in default color on yellow background.
      
             %-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<
                    The  available  windows centered at the current window and truncated to the available
                    width. The current window is displayed white on blue.  
                      This can be used  with  "hardzzz   status alwayslastline".
      
             %?%F%{.R.}%?%3n %t%? [%h]%?
                    The  window  number and title and the window's hardstatus, if one is set.  Also use a
                    red background if this is the active focus. Useful for "caption string".
      

      FLOW-CONTROL

      Each window has a flow-control setting that determines how screen deals with the XON and XOFF characters (and perhaps the interrupt character). When flow-control is turned off, screen ignores the XON and XOFF characters, which allows the user to send them to the current program by simply typing them (useful for the emacs editor, for instance). The tradeoff is that it will take longer for output from a "normal" program to pause in response to an XOFF. With flow-control turned on, XON and XOFF characters are used to immediately pause the output of the current window. You can still send these characters to the current program, but you must use the appropriate two-character screen commands (typically "^a q" (xon) and "^a s" (xoff)). The xon/xoff commands are also useful for typing ^s and ^q past a terminal that intercepts these characters.

      Each window has an initial flow-control value set with either the -f option or the "defflow" .screenrc command. Per default the windows are set to automatic flow-switching. It can then be toggled between the three states 'fixed on', 'fixed off' and 'automatic' interactively with the "flow" command bound to "^a f".

      The automatic flow-switching mode deals with flow control using the TIOCPKT mode (like "rlogin" does). If the tty driver does not support TIOCPKT, screen tries to find out the right mode based on the current setting of the application keypad - when it is enabled, flow-control is turned off and visa versa. Of course, you can still manipulate flow-control manually when needed.

      If you're running with flow-control enabled and find that pressing the interrupt key (usually ^c) does not interrupt the display until another 6-8 lines have scrolled by, try running screen with the "interrupt" option (add the "interrupt" flag to the "flow" command in your .screenrc, or use the -i command-line option). This causes the output that screen has accumulated from the interrupted program to be flushed. One disadvantage is that the virtual terminal's memory contains the non-flushed version of the output, which in rare cases can cause minor inaccuracies in the output. For example, if you switch screens and return, or update the screen with "^a l" you would see the version of the output you would have gotten without "interrupt" being on. Also, you might need to turn off flow-control (or use auto-flow mode to turn it off automatically) when running a program that expects you to type the interrupt character as input, as it is possible to interrupt the output of the virtual terminal to your physical terminal when flow-control is enabled. If this happens, a simple refresh of the screen with "^a l" will restore it. Give each mode a try, and use whichever mode you find more comfortable.

      TITLES (naming windows)

      You can customize each window's name in the window display (viewed with the "windows" command (^a w)) by setting it with one of the title commands. Normally the name displayed is the actual command name of the program created in the window. However, it is sometimes useful to distinguish various programs of the same name or to change the name on-the-fly to reflect the current state of the window.

      The default name for all shell windows can be set with the "shelltitle" command in the .screenrc file, while all other windows are created with a "screen" command and thus can have their name set with the -t option. Interactively, there is the title-string escapesequence (␛kname␛\) and the "title" command (^a A). The former can be output from an application to control the window's name under software control, and the latter will prompt for a name when typed. You can also bind pre-defined names to keys with the "title" command to set things quickly without prompting.

      screen has a shell-specific heuristic that is enabled by setting the window's name to "search|name" and arranging to have a null title escape-sequence output as a part of your prompt. The search portion specifies an end-of-prompt search string, while the name portion specifies the default shell name for the window. If the name ends in a `:' screen will add what it believes to be the current command running in the window to the end of the window's shell name (e.g. "name:cmd"). Otherwise the current command name supersedes the shell name while it is running.

      you must modify your shell prompt to output a null title-escapesequence (␛k␛\) as a part of your prompt. The last part of your prompt must be the same as the string you specified for the search portion of the title. Once this is set up, screen will use the title-escape-sequence to clear the previous command name and get ready for the next command. Then, when a newline is received from the shell, a search is made for the end of the prompt. If found, it will grab the first word after the matched string and use it as the command name. If the command name begins with either '!', '%', or '^' screen will use the first word on the following line (if found) in preference to the just-found name. This helps csh users get better command names when using job control or history recall commands.

      Here's some .screenrc examples:

      screen -t top 2 nice top
      Adding this line to your .screenrc would start a nice-d version of the "top" command in window 2 named "top" rather than "nice".
      shelltitle '> |csh'
      screen 1
      These commands would start a shell with the given shelltitle. The title specified is an auto-title that would expect the prompt and the typed command to look something like the following:
      /usr/joe/src/dir> trn
      (it looks after the '> ' for the command name). The window status would show the name "trn" while the command was running, and revert to "csh" upon completion.
      bind R screen -t '% |root:' su
      Having this command in your .screenrc would bind the key sequence "^a R" to the "su" command and give it an auto-title name of "root:". For this auto-title to work, the screen could look something like this:
      % !em
      emacs file.c

      Here the user typed the csh history command "!em" which ran the previously entered "emacs" command. The window status would show "root:emacs" during the execution of the command, and revert to simply "root:" at its completion.

       
       bind o title             #  prompts for a title.  Enter ^a o.  
       bind E title ""          # clears auto-title's current setting (^a E).  
       bind u title (unknown)   # set the current window's title to "(unknown)" (^a u).
      Some shells (like csh) count all the non-control characters as part of the prompt's length including a null title-escape-sequence. If invisible characters aren't a multiple of 8 backspacing over a tab will result in an incorrect display. One way to get around this is to use a prompt like this:
       set prompt='^[[0000m^[k^[\% ' 
      The escape-sequence "␛[0000m" normalizes the character attributes and all the zeros round the length of the invisible characters up to 8. Bash users should echo the escape sequence in the PROMPT_COMMAND:
       PROMPT_COMMAND='echo -n -e "\033k\033\134"' 

      THE VIRTUAL TERMINAL

      Each window in a screen session emulates a VT100 terminal, with some extra functions, no other terminal types can be emulated.

      With rlogin or your machine supports only terminfo this method fails. Because of this, screen offers a way to deal with these cases. Here is how it works:

      Screen determines a terminal name by looks for an entry named "screen.<term>", where <term> is the contents of your $TERM variable. If no such entry exists, screen tries "screen" (or "screen-w" if the terminal is wide (132 cols or more)). If even this entry cannot be found, "vt100" is used as a substitute.

      The idea is that if you have a terminal which doesn't support an important feature (e.g. delete char or clear to EOS) you can build a new termcap/terminfo entry for screen (named "screen.<dumbterm>") in which this capability has been disabled. If this entry is installed on your machines you are able to do a rlogin and still keep the correct termcap/terminfo entry. The terminal name is put in the $TERM variable of all new windows. Screen also sets the $TERMCAP variable reflecting the capabilities of the virtual terminal emulated. Notice that, however, on machines using the terminfo database this variable has no effect. Furthermore, the variable $WINDOW is set to the window number of each window.

      The actual set of capabilities supported by the virtual terminal depends on the capabilities supported by the physical terminal. If, for instance, the physical terminal does not support underscore mode, screen does not put the `us' and `ue' capabilities into the window's $TERMCAP variable, accordingly. However, a minimum number of capabilities must be supported by a terminal in order to run screen; namely scrolling, clear screen, and direct cursor addressing (in addition, screen does not run on hardcopy terminals or on terminals that over-strike).

      Also, you can customize the $TERMCAP value used by screen by using the "termcap" .screenrc command, or by defining the variable $SCREENCAP prior to startup. When the is latter defined, its value will be copied verbatim into each window's $TERMCAP variable. This can either be the full terminal definition, or a filename where the terminal "screen" (and/or "screen-w") is defined.

      screen honors the "terminfo" .screenrc command if the system uses the terminfo database rather than termcap.

      When the boolean `G0' capability is present in the termcap entry for the terminal on which screen has been called, the terminal emulation of screen supports multiple character sets. This allows an application to use the VT100 graphics character set or national character sets. These control functions from ISO 2022 are supported: lock shift G0 (SI), lock shift G1 (SO), lock shift G2, lock shift G3, single shift G2, and single shift G3. When a virtual terminal is created or reset, the ASCII character set is designated as G0 through G3. When the `G0' capability is present, screen evaluates the capabilities `S0', `E0', and `C0' if present. `S0' is the sequence the terminal uses to enable and start the graphics character set rather than SI. `E0' is the corresponding replacement for SO. `C0' gives a character by character translation string that is used during semi-graphics mode. This string is built like the `acsc' terminfo capability.

      When the `po' and `pf' capabilities are present in the terminal's termcap entry, applications running in a screen window can send output to the printer port of the terminal. This allows a user to have an application in one window sending output to a printer connected to the terminal, while all other windows are still active (the printer port is enabled and disabled again for each chunk of output). As a side-effect, programs running in different windows can send output to the printer simultaneously. Data sent to the printer is not displayed in the window. The info command displays a line starting `PRIN' while the printer is active.

      Screen maintains a hardstatus line for every window. If a window gets selected, the display's hardstatus will be updated to match the window's hardstatus line. If the display has no hardstatus the line will be displayed as a standard screen message. The hardstatus line can be changed with the ANSI Application Program Command (APC): "ESC_<string>ESC\". As a convenience for xterm users the sequence "ESC]0..2;<string>^G" is also accepted.

      Some capabilities are only put into the $TERMCAP variable of the virtual terminal if they can be efficiently implemented by the physical terminal. For instance, `dl' (delete line) is only put into the $TERMCAP variable if the terminal supports either delete line itself or scrolling regions. Note that this may provoke confusion, when the session is reattached on a different terminal, as the value of $TERMCAP cannot be modified by parent processes.

      The "alternate screen" capability is not enabled by default. Set the altscreen .screenrc command to enable it.

      A list of control sequences recognized by screen. "(V)" and "(A)" indicate VT100-specific and ANSI- or ISO-specific functions, respectively.

      INPUT TRANSLATION

      A sequence of characters in the input stream was generated by a keypress on the user's keyboard and insert the VT100 style escape sequence. Map arbitrary commands on arbitrary sequences of characters. For standard VT100 emulation the command will always insert a string in the input buffer of the window (see also command stuff in the command table). Sequences generated by a keypress can change after a reattach from a different terminal type, it is possible to bind commands to the termcap name of the keys. Screen will insert the correct binding after each reattach. See bindkey for further details on the syntax and examples.

      Here is the table of the default key bindings. (A) means that the command is executed if the keyboard is switched into application mode.

      SPECIAL TERMINAL CAPABILITIES

      The following table describes all terminal capabilities that are recognized by screen and are not in the termcap(5) manual. You can place these capabilities in your termcap entries (in /etc/termcap) or use them with the commands termcap, terminfo and termcapinfo in your screenrc files. It is often not possible to place these capabilities in the terminfo database.

      CHARACTER TRANSLATION

      Screen has a mechanism to translate characters to arbitrary strings depending on the current font and terminal type.
      Use this feature if you want to work with a common standard character set (say ISO8851-latin1) even on terminals that scatter the more unusual characters over several national language font pages.

      ENVIRONMENT

      COLUMNS Number of columns on the terminal (overrides termcap entry).
      HOME Directory in which to look for .screenrc.
      LINES Number of lines on the terminal (overrides termcap entry).
      LOCKPRG Screen lock program.
      NETHACKOPTIONSTurnson nethack option.
      PATH Used for locating programs to run.
      SCREENCAP For customizing a terminal's TERMCAP value.
      SCREENDIR Alternate socket directory.
      SCREENRC Alternate user screenrc file.
      SHELL Default shell program for opening windows (default "/bin/sh").
      STY Alternate socket name.
      SYSSCREENRC Alternate system screenrc file.
      TERM Terminal name.
      TERMCAP Terminal description.
      WINDOW Window number of a window (at creation time).

      FILES

      .../screen-4.?.??/etc/screenrc
      .../screen-4.?.??/etc/etcscreenrc Examples in the screen distribution package for private
      and global initialization files.
      $SYSSCREENRC
      /usr/local/etc/screenrc screen initialization commands
      $SCREENRC
      $HOME/.screenrc Read in after /usr/local/etc/screenrc
      $SCREENDIR/S-
      /local/screens/S- Socket directories (default)
      /usr/tmp/screens/S- Alternate socket directories.
      /.termcap Written by the "termcap" output function
      /usr/tmp/screens/screen-exchange or
      /tmp/screen-exchange screen `interprocess communication buffer'
      hardcopy.[0-9] Screen images created by the hardcopy function
      screenlog.[0-9] Output log files created by the log function
      /usr/lib/terminfo/?/* or
      /etc/termcap Terminal capability databases
      /etc/utmp Login records
      $LOCKPRG Program that locks a terminal.
      SEE ALSO termcap(5), utmp(5), vi(1), captoinfo(1), tic(1)

      Return

      always returns 0

      AUTHORS

      Originally created by Oliver Laumann, this latest version was produced by Wayne Davison, Juergen Weigert and Michael Schroeder.

      COPYLEFT

      Copyright (C) 1993-2003 Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de) Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de) Copyright (C) 1987 Oliver Laumann This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (see the file COPYING); if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA

      CONTRIBUTORS Ken Beal (kbeal@amber.ssd.csd.harris.com), Rudolf Koenig (rfkoenig@immd4.informatik.uni-erlangen.de), Toerless Eckert (eckert@immd4.informatik.uni-erlangen.de), Wayne Davison (davison@borland.com), Patrick Wolfe (pat@kai.com, kailand!pat), Bart Schaefer (schaefer@cse.ogi.edu), Nathan Glasser (nathan@brokaw.lcs.mit.edu), Larry W. Virden (lvirden@cas.org), Howard Chu (hyc@hanauma.jpl.nasa.gov), Tim MacKenzie (tym@dibbler.cs.monash.edu.au), Markku Jarvinen (mta@{cc,cs,ee}.tut.fi), Marc Boucher (marc@CAM.ORG), Doug Siebert (dsiebert@isca.uiowa.edu), Ken Stillson (stillson@tsfsrv.mitre.org), Ian Frechett (frechett@spot.Colorado.EDU), Brian Koehmstedt (bpk@gnu.ai.mit.edu), Don Smith (djs6015@ultb.isc.rit.edu), Frank van der Linden (vdlinden@fwi.uva.nl), Martin Schweikert (schweik@cpp.ob.open.de), David Vrona (dave@sashimi.lcu.com), E. Tye McQueen (tye%spillman.UUCP@uunet.uu.net), Matthew Green (mrg@eterna.com.au), Christopher Williams (cgw@pobox.com), Matt Mosley (mattm@access.digex.net), Gregory Neil Shapiro (gshapiro@wpi.WPI.EDU), Johannes Zellner (johannes@zellner.org), Pablo Averbuj (pablo@averbuj.com).

      VERSION

      This is version 4.0.2. Its roots are a merge of a custom version 2.3PR7 by Wayne Davison and several enhancements to Oliver Laumann's version 2.0. Note that all versions numbered 2.x are copyright by Oliver Laumann.

      AVAILABILITY

      The latest official release of screen available via anonymous ftp from gnudist.gnu.org, nic.funet.fi or any other GNU distribution site. The home site of screen is ftp.uni-erlangen.de, in the directory pub/utilities/screen. The subdirectory `private' contains the latest beta testing release. If you want to help, send a note to screen@uni-erlangen.de.

      BUGS

      1. `dm' (delete mode) and `xs' are are ignored. `xn' is treated as a magic-margin indicator.
      2. doesn't handle double-high or double-wide characters.
      3. It is not possible to change the environment variable $TERMCAP when reattaching under a different terminal type.
      4. support of terminfo based systems is very limited.
      5. Does not use hardware tabs.
      6. Must be installed as set-uid with owner root on most systems in order to be able to correctly change the owner of the tty device file for each window. and to write the /etc/utmp
      7. Entries in /etc/utmp are not removed when screen is killed with SIGKILL causing some programs (like "w" or "rwho") to advertise that a user is logged on who really isn't.
      8. gives a warning when your tty has no utmp entry.
      9. may not automatically detach (or quit) When the modem line was hung up unless the device driver is configured to send a HANGUP signal.
        To detach a screen session use -D or -d
      10. If a password is set, the command line -D or -d detach a session without asking.
      11. Both "breaktype" and "defbreaktype" change the break generating method used by all terminal devices.
        The first should change a window specific setting, where the latter should change only the default for new windows.
      12. When attaching to a multiuser session, the user's .screenrc is not sourced. Each user's personal settings have to be included in the .screenrc file from which the session is booted, or have to be changed manually.
      13. If etc/utmp is writable by screen, a record will be written for each window, and removed when the window is terminated. This is for working with "talk", "script", "shutdown", "rsend", "sccs" and similar programs that use utmp to determine who you are. As long as screen is active on your terminal, the terminal's own record is removed from the utmp file. See ^a L.

      CUSTOMIZATION

      If screen is not running setuid-root, the user can specify any mode 700 directory in the environment variable $SCREENDIR.

      The "socket directory" defaults to $HOME/.screen or /tmp/screens or /usr/local/screens chosen at compile-time.
      If screen is installed setuid-root, the administrator should compile screen with an adequate (not NFS mounted) socket directory.

      4th Berkeley Distribution Aug 2003 SCREEN(1)

      Gnu Docs

      See Also

      stty especially:-onlcr to translate ␤ to ␍␤