Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I was reviewing fork and threads documentation, but am not sure if and how they should be used. Thank you for help.@getfile1 = qq/getS1config.pl/; open (FILE1, "@getfile1|" ); @file1 = <FILE1>; @getfile2 = qq/getS2config.pl/; open (FILE2, "@getfile2|" ); @file2 = <FILE2>; @getfile3 = qq/getS3config.pl/; open (FILE3, "@getfile3|" ); @file3 = <FILE3>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: simultaneous external script execution
by BrowserUk (Patriarch) on Jan 28, 2007 at 06:12 UTC | |
|
Re: simultaneous external script execution
by blazar (Canon) on Jan 28, 2007 at 11:07 UTC | |
|
Re: simultaneous external script execution
by zentara (Cardinal) on Jan 28, 2007 at 11:32 UTC |