in reply to Launching an .exe file from Perl
then you can just put each program into the array and not have a clutter of system calls.my @array = ('paint.exe', 'photo.exe'); foreach (@array){ system($_) or die; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Launching an .exe file from Perl
by le (Friar) on Jul 07, 2000 at 21:45 UTC |