Skip to content

Instantly share code, notes, and snippets.

@stollcri
Created November 13, 2015 15:14
Show Gist options
  • Save stollcri/05eaf6290c93d5e8307e to your computer and use it in GitHub Desktop.
Save stollcri/05eaf6290c93d5e8307e to your computer and use it in GitHub Desktop.
Detach a running process so that it can run after logout
$ myapp
$ Ctrl-z
[1]+ Stopped myapp
$ disown -h %1
$ bg 1
[1]+ myapp &
$ exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment