diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-20 16:19:00 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-20 16:19:00 +0000 |
commit | 40b7eeef93cf0584b0d7d850beb70a00e3135bc3 (patch) | |
tree | a178de94f30854526876766cff54ed12ea77fec7 /pod/perlopentut.pod | |
parent | be99777f11f45794695cc66d8f318d65df2f1d77 (diff) | |
download | perl-40b7eeef93cf0584b0d7d850beb70a00e3135bc3.tar.gz |
pod tweaks
p4raw-id: //depot/perl@4699
Diffstat (limited to 'pod/perlopentut.pod')
-rw-r--r-- | pod/perlopentut.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlopentut.pod b/pod/perlopentut.pod index dbb3a0bd83..5d2be3039e 100644 --- a/pod/perlopentut.pod +++ b/pod/perlopentut.pod @@ -123,9 +123,9 @@ special way. If you open minus for reading, it really means to access the standard input. If you open minus for writing, it really means to access the standard output. -If minus can be used as the default input or default output? What happens +If minus can be used as the default input or default output, what happens if you open a pipe into or out of minus? What's the default command it -would run? The same script as you're current running! This is actually +would run? The same script as you're currently running! This is actually a stealth C<fork> hidden inside an C<open> call. See L<perlipc/"Safe Pipe Opens"> for details. |