4
1
Possible Duplicate:
How do I fork a process that doesn't die when shell exits?
Sometimes I remotely connect to my Ubuntu using NX. I then run some jobs in the background, e.g.:
$ /path/to/script.pl &
However, when I log out, the jobs stop running.
How can I make them continue even after I log out?
nohup is one option, but
screen
is a much better solution. +1. – peelman – 2010-09-21T02:01:33.6971How should i run my script using
screen
? – David B – 2010-09-21T09:56:14.597