Created
November 1, 2018 22:04
-
-
Save prathe/a2fc127e38f0851068b05df48794946d to your computer and use it in GitHub Desktop.
Managing Linux screens
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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