From: Jarkko Hietaniemi Date: Tue, 18 Jun 2002 20:31:10 +0000 (+0000) Subject: To mirror #17285. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=08eb67387915c47b191a2555a4649a3c17a9e36d;p=p5sagit%2Fp5-mst-13.2.git To mirror #17285. p4raw-id: //depot/perl@17290 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 67806a9..1faa433 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -337,13 +337,13 @@ of PerlIO on your architecture name. =item * If your platform supports fork(), you can use the list form of C -for pipes: +for pipes. For example: open KID_PS, "-|", "ps", "aux" or die $!; forks the ps(1) command (without spawning a shell, as there are more than three arguments to open()), and reads its standard output via the -C filehandle. +C filehandle. See L. =item *