Skip to content

Instantly share code, notes, and snippets.

@bcjordan
Created July 8, 2011 22:12
Show Gist options
  • Save bcjordan/1072952 to your computer and use it in GitHub Desktop.
Save bcjordan/1072952 to your computer and use it in GitHub Desktop.
nohup an already running foreground or background process
[root@bjordan-dev scripts]# ruby long_task.rb
# Press ctrl+z to suspend the process
[1]+ Stopped ruby long_task.rb
[root@bjordan-dev scripts]# bg
[1]+ ruby long_task.rb &
[root@bjordan-dev scripts]# pidof ruby
29794
[root@bjordan-dev scripts]# disown 29794
[root@bjordan-dev scripts]# exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment