Skip to content

Instantly share code, notes, and snippets.

@prathe
Created November 1, 2018 22:04
Show Gist options
  • Save prathe/a2fc127e38f0851068b05df48794946d to your computer and use it in GitHub Desktop.
Save prathe/a2fc127e38f0851068b05df48794946d to your computer and use it in GitHub Desktop.
Managing Linux screens
# create with a name
screen -d -m -S elasticsearch:import:migrate
# list with PIDs
screen -list
# reopen one with PID
screen -r 12345
# Destroy with PID
screen -r 12345
C-A \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment