Last active
August 1, 2016 14:07
-
-
Save thebentern/27147e4f19d5a3ade5e2a4665ba2dab6 to your computer and use it in GitHub Desktop.
Screen commands in linux
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
screen -S "my screen name" | |
# Ctrl-A + D will detach you from that screen | |
# Show the list of available screens | |
screen -r | |
# To reattach to that screen | |
screen -r "screen id" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment