Change 17290 by jhi@alpha on 2002/06/18 20:31:10
To mirror #17285.
Affected files ...
.... //depot/perl/pod/perldelta.pod#461 edit
Differences ...
==== //depot/perl/pod/perldelta.pod#461 (text) ====
Index: perl/pod/perldelta.pod
--- perl/pod/perldelta.pod#460~17286~ Tue Jun 18 13:19:25 2002
+++ perl/pod/perldelta.pod Tue Jun 18 13:31:10 2002
@@ -337,13 +337,13 @@
=item *
If your platform supports fork(), you can use the list form of C<open>
-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<KID_PS> filehandle.
+C<KID_PS> filehandle. See L<perlipc>.
=item *
End of Patch.