Hi,
Can I execute a PERL or a PHP file 24 hours continuesly in the back end using "nohup" command?
use of "nohup" in unix
Moderator: General Moderators
Re: use of "nohup" in unix
You can also try to run a background subshell:
$ ( ./extremLongRuntimeCommand & )
instead of:
$ nohup ./extremLongRuntimeCommand
See for explanation of backgrounded subshell when nohup hangsup anyway http://linuxshellaccount.blogspot.com/2 ... nyway.html
______________________________________________________________
The opensource virtual machine: http://vbox.innotek.de/
The opensource virtual mainframe machine: http://www.hercules-390.org/
$ ( ./extremLongRuntimeCommand & )
instead of:
$ nohup ./extremLongRuntimeCommand
See for explanation of backgrounded subshell when nohup hangsup anyway http://linuxshellaccount.blogspot.com/2 ... nyway.html
______________________________________________________________
The opensource virtual machine: http://vbox.innotek.de/
The opensource virtual mainframe machine: http://www.hercules-390.org/