in reply to Re^4: running command line from Perl
in thread running command line from Perl
This is not what you want to use to capture the output from a command; for that you should use merely backticks or qx//, as described in "`STRING`" in perlop. Return value of -1 indicates a failure to start the program or an error of the wait(2) system call (inspect $! for the reason).
"These opinions are my own, though for a small fee they be yours too."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: running command line from Perl
by LanX (Saint) on May 18, 2022 at 15:48 UTC |