Skip to content

Instantly share code, notes, and snippets.

@alotaiba
Created February 3, 2012 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alotaiba/1728567 to your computer and use it in GitHub Desktop.
Save alotaiba/1728567 to your computer and use it in GitHub Desktop.
Some useful screen commands for Linux (to run background processes)
# 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