diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-18 20:31:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-18 20:31:10 +0000 |
commit | 08eb67387915c47b191a2555a4649a3c17a9e36d (patch) | |
tree | 819acc30bc1f4fe47483d0d919503f81d6841d13 /pod/perldelta.pod | |
parent | 364820493cd2f1f760fb5b3575de9294887c12a4 (diff) | |
download | perl-08eb67387915c47b191a2555a4649a3c17a9e36d.tar.gz |
To mirror #17285.
p4raw-id: //depot/perl@17290
Diffstat (limited to 'pod/perldelta.pod')
-rw-r--r-- | pod/perldelta.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 67806a92c1..1faa4331c7 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<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 * |