Tagged Questions
5
votes
2answers
474 views
Why jobs aren't killed at logout when executed with “> /dev/null 2>&1 &”?
When you run jobs like the example below, they're killed when you logout:
$ ./job.sh &
However, when you execute them as in the below example, redirecting stdout to /dev/null and stderr to ...