Created
July 8, 2011 22:12
-
-
Save bcjordan/1072952 to your computer and use it in GitHub Desktop.
nohup an already running foreground or background process
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
[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