in reply to Re^2: Killing the child process is not working
in thread Killing the child process is not working
But I know only one way to create the child to run it parallel to parent in perl 5.6 using fork
If all you want it to run an asynchronous process, try my $childPid = system 1, q[theCommand and args];.
But don;t expect much help if you run into problems. On 5.6, you are on your own. Noone wants to be bothered trying to re-debug code that has long since been fixed.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Killing the child process is not working
by srlbharu (Acolyte) on Mar 20, 2013 at 09:06 UTC | |
by BrowserUk (Patriarch) on Mar 20, 2013 at 10:16 UTC |