in reply to calling .EXE through Perl script
untested, sorry have no system here to do it, but it should give you the direction.
See also:
use File::Find; find(\&run, '.'); sub run{ system("bla.exe $File::Find::name"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: calling .EXE through Perl script
by GrandFather (Saint) on May 11, 2006 at 08:58 UTC |