yaralian has asked for the wisdom of the Perl Monks concerning the following question:
Help please!!! Thanks in advance John# This is oversimplified but should work. # The $command string is generated each time # The $handle is supposed to be an anon file handle. use IO::File; for($f=0; $f<10; $f++){ my $handle = IO::File -> new(); open($handle, "$command |"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Asynchronous processes and anonymous handles
by moritz (Cardinal) on May 16, 2008 at 07:12 UTC | |
|
Re: Asynchronous processes and anonymous handles
by waba (Monk) on May 16, 2008 at 19:06 UTC |