On this page you find all important commands for the CLI tool screen. If the
command you are looking for is missing please ask our AI.
screen
Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides the functions of a DEC VT100 terminal and, in addition, several control functions from the ISO 6429 (ECMA 48, ANSI X3.64) and ISO 2022 standards (e.g. insert/delete line and support for multiple character sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste mechanism that allows moving text regions between windows.
List of commands for screen:
-
screen:resume Resume a screen session (use screen:list to show running sessions)$ screen -r ${session_id}try on your machineexplain this command
-
screen:start Starting a named screen session$ screen -S ${session_name}try on your machineexplain this command
-
screen:tldr:08463 screen: Kill a detached screen.$ screen -X -S ${session_name} quittry on your machineexplain this command
-
screen:tldr:599eb screen: Start a new screen session.$ screentry on your machineexplain this command
-
screen:tldr:8991a screen: Start a new daemon and log the output to `screenlog.x`.$ screen -dmLS ${session_name} ${command}try on your machineexplain this command