nohup (No Hang Up) - lets process continue, even if session is disconnected
# run a script, in the background
runbackup &
# run a script, allow it to continue after logging off
nohup runbackup &
# Here nohup.out will still be created, but any output will
# show up in test70.log. Errors will appear in nohup.out.
nohup /export/spare/hmc/scripts/test70 > test70.log &
There are no comments on this page. [Add comment]