HI,
I have a script that will parse some data then print it out to a file.
I'd like to set it running on a remote machine then leave (close the ssh session). But, I think the script stops working after that.
How can I run the script remotely then leave and have it still running?
Cron?
thanx,
Start it with nohup in front like so:
nohup /path/to/script &
Output will be send to ./nohup.out (unless redirected elsewhere). If it's an interactive process you want to run check out screen.
Bookmarks