Last active
August 29, 2015 14:10
-
-
Save rcdexta/9ea1319dd32ed1bf8b99 to your computer and use it in GitHub Desktop.
disown jobs
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
$ jobs -l | |
1] + 13701 running ruby data_cruncher.rb | |
2] + 14312 running tail -f data_cruncher.log | |
$ disown %1 | |
$ jobs -l | |
1] + 14312 running tail -f data_cruncher.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment