Skip to content

Instantly share code, notes, and snippets.

@abelcallejo
Last active June 11, 2021 02:37
Show Gist options
  • Select an option

  • Save abelcallejo/8d065d5725bed5a293fd8123d7caadf7 to your computer and use it in GitHub Desktop.

Select an option

Save abelcallejo/8d065d5725bed5a293fd8123d7caadf7 to your computer and use it in GitHub Desktop.
Screen cheatsheet

Screen cheatsheet

Detaching

control + A and then immediately followed by D

Resuming a screen

screen -r

Listing running screens

screen -ls

Quiting

# List the screens
screen -ls

# Force quit a specific one from the list
screen -X -S 3619 quit

Note: You should have at least detached the screen then execute this from the hosting shell

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment