
screen
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:721e5 screen: Detach from inside a screen.$ Ctrl + A, Dtry on your machineexplain this command
-
screen:tldr:8894d screen: Kill the current screen session.$ Ctrl + A, Ktry 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