Created
February 3, 2012 06:45
-
-
Save alotaiba/1728567 to your computer and use it in GitHub Desktop.
Some useful screen commands for Linux (to run background processes)
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
# Some useful screen commands for Linux (to run background processes) | |
## Starting a new screen with title | |
screen -t <title_of_screen> | |
## Resuming screen | |
screen -r | |
## Starting a screen with a command | |
screen -dmS <title_of_screen> <command_to_run> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment