Created
February 23, 2011 15:08
-
-
Save datwright/840529 to your computer and use it in GitHub Desktop.
Running a long remote process using screen without having to worry about disconnecting
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
ssh [email protected] | |
screen # start new screen session | |
do-your-process | |
# Press CRTL-a, d -- detaches from new screen session | |
exit | |
ssh [email protected] | |
screen -r #resume previous screen session |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment