Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Created November 14, 2015 20:46
Show Gist options
  • Save Mrkisha/fdc87d078f535216ed8c to your computer and use it in GitHub Desktop.
Save Mrkisha/fdc87d078f535216ed8c to your computer and use it in GitHub Desktop.
# 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