diff options
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. |