I'd like to start an extensive IDL process which will be run on a linux based server.
Given a normal a procedure like this:
- open PuTTy
- move to right directory
- compile IDL scripts (1 main script executing 2 others)
- run main script.
Now I would like to do that in the background. After some Google research I found out that it is adivisable to use the nohup-command. But I don't know what this command should look like including my scripts....
Thanks for your help.
nohup command can be used to run any job in background which you run in foreground. The syntax for it is : nohup your_script &
You can use the fg to bring this job to foreground.