|
|
|
good chemistry is complicated, and a little bit messy -LW |
|
| PerlMonks |
Comment on |
| ( #3333=superdoc: print w/ replies, xml ) | Need Help?? |
|
Is it possible that it's outputting on STDERR as well as STDOUT? You can try redirecting STDERR somewhere else in the command such as:
@foobar=`mac \"foo.ape\" -v 2>/dev/null`; Or, if you want to capture STDERR as well: @foobar=`mac \"foo.ape\" -v 2>&1`; m.att In reply to Re: Running external command from perl but cannot capture output
by m.att
|
|