perlmonkdr has asked for the wisdom of the Perl Monks concerning the following question:
Hi guys!!!
I working with fork and exec, basicaly i would like to execute 10 times (at the same moment) a program but i don't want wait that those programs finish, so, i think in exec, but when i use fork, it still wait the status of the program.
Exists a way or method to do this?
Let me give you an example:
my a=0; while (++$a <= 10) { unless (fork()) { # Here I want execute and continue without # wait the status exec( 'perl sleep.pl'); #This exit isn't necessary, isn't it? exit(0); } }
Any comment are welcome, thk U so much.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Fork and exec
by mr_mischief (Monsignor) on Apr 30, 2008 at 06:16 UTC | |
by MidLifeXis (Monsignor) on Apr 30, 2008 at 17:16 UTC | |
by perlmonkdr (Beadle) on Apr 30, 2008 at 23:10 UTC | |
|
Re: Fork and exec
by Anonymous Monk on Apr 30, 2008 at 06:19 UTC | |
by perlmonkdr (Beadle) on May 01, 2008 at 08:25 UTC | |
|
Re: Fork and exec
by pc88mxer (Vicar) on Apr 30, 2008 at 14:54 UTC | |
by perlmonkdr (Beadle) on May 01, 2008 at 08:28 UTC | |
by rowdog (Curate) on May 01, 2008 at 22:59 UTC | |
by perlmonkdr (Beadle) on May 02, 2008 at 20:34 UTC |