tags:

views:

42

answers:

2

How can I start a job on a *nix system that will not exit when my session exits?

+2  A: 

nohup your_process &

ElectricDialect
+2  A: 

Use the command nohup, and then add an ampersand (&) at the end to put the job in the background.

$ nohup ./fetch_command > fetch_log_file &

Then you can exit the shell and the job will continue running.

JSchaefer
Thanks, I think I should have known that.
C. Ross