in reply to Accessing an executable from perl script
$abc_cmd = "abc.exe" -i $input_file -o $output_file";This doesn't compile.
system $abc_cmd;You're neither checking the return value of system, nor are you checking $?. If you expect you have a problem with $abc_cmd, checking those values is something you ought to be before asking others to debug your program.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Accessing an executable from perl script
by Anonymous Monk on Mar 01, 2012 at 23:00 UTC |