in reply to How to avoid to launch a unix shell script in a perl script

Search for "background" in perlfaq8 and in perlipc on how to launch a subprocess in the background. If you read carefully, these perldocs also tell you how to make the subprocess lose its controlling terminal and redirect its output to a file, which is what nohup does.

  • Comment on Re: How to avoid to launch a unix shell script in a perl script