diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-04 22:56:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-04 22:56:23 +0000 |
commit | 06a5f41f0431df02a9cd266d1e2a88d3625b083b (patch) | |
tree | 08552950257d315bd7daa75a0c14a8f7a5665dec /pod/perlfaq8.pod | |
parent | 466bafcd4432239968dcf0c427d25b79b1833243 (diff) | |
download | perl-06a5f41f0431df02a9cd266d1e2a88d3625b083b.tar.gz |
A bit of "perl.com" cleanup.
p4raw-id: //depot/perl@14083
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r-- | pod/perlfaq8.pod | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod index bf5d7a6a6f..0f65a30762 100644 --- a/pod/perlfaq8.pod +++ b/pod/perlfaq8.pod @@ -634,9 +634,10 @@ STDOUT). Note that you I<must> use Bourne shell (sh(1)) redirection syntax in backticks, not csh(1)! Details on why Perl's system() and backtick -and pipe opens all use the Bourne shell are in -http://www.cpan.org/doc/FMTEYEWTK/versus/csh.whynot . -To capture a command's STDERR and STDOUT together: +and pipe opens all use the Bourne shell are in the +F<versus/csh.whynot> article in the "Far More Than You Ever Wanted To +Know" collection in http://www.cpan.org/olddoc/FMTEYEWTK.tgz . To +capture a command's STDERR and STDOUT together: $output = `cmd 2>&1`; # either with backticks $pid = open(PH, "cmd 2>&1 |"); # or with an open pipe |