Created
April 16, 2015 05:08
-
-
Save bot11/e0db81ef38c441cb9bd3 to your computer and use it in GitHub Desktop.
screen commands
This file contains hidden or 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
# list all screens | |
screen -ls | |
# Setup a shared screen | |
screen -d -m -S <sessionname> | |
#Attach to the screen using. | |
#Multiple users can attach to the same screen using the below command and share. | |
screen -x <sessionname> | |
#Kill a screen session | |
#To cleanly shutdown a screen session, you can attach to it and then press the Ctrl-a k command sequence. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment