I'm new to Perl and want to know of a way to run an external command (call it prg) in the following scenarios:
- Run
prg, get itsstdoutonly. - Run
prg, get itsstderronly. - Run
prg, get itsstdoutandstderr, separately.
|
You can use the backtics to execute your external program and capture its By default the backticks discard the
Will capture the To capture only
To capture both
Using the above you'll not be able to differenciate
|
|||||||
|
|
You can use IPC::Open3 or IPC::Run. Also, read How can I capture STDERR from an external command from perlfaq8. |
||||
|
|
|
You can use |
|||
|
|
perldoc --help. The answer to your specific question could have been found directly by command-line searches such as these:perldoc -q captureorperldoc -q external. – FMc Mar 17 '10 at 12:19