Created
November 14, 2015 20:46
-
-
Save Mrkisha/fdc87d078f535216ed8c to your computer and use it in GitHub Desktop.
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 | |
#You SSH into a server, run a command, the internet goes off…profanities all around you! | |
#Had you used screen, this wouldn’t have happened! | |
#With screen, you will: | |
#create a new terminal session with | |
screen -S executing-long-command | |
#launch your command | |
#switch off your laptop | |
#go home | |
#have a shower | |
#hopefully have some qeema for dinner | |
#check if your command was successful by SSHing into the remote server again and re-attaching onto your session with | |
screen -r executing-long-command |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment