in reply to how to run a process in background mode

A very nice module that makes this simple on Windows and Linux, as well as allowing you to either ignore or wait on a process, is Proc::Background. Use this if you can, and only worry about fork and exec if you need to run arbitrary code in those places. If you are doing system calls, Proc::Background is for you.
  • Comment on Re: how to run a process in background mode

Replies are listed 'Best First'.
Re: Re: how to run a process in background mode
by w3ntp (Beadle) on Mar 29, 2004 at 20:29 UTC
    This is exactly the program that I am looking for. Loaded it and it works just like I need it to. Many many thanks W3NTP (Neil)