diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-04-08 19:05:22 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-04-08 19:05:22 +0000 |
commit | 2fde0ff06cfbce5bef48ed08a204260616fb0a3f (patch) | |
tree | e66f65671797d886ba50263b5947cfe95347a219 /vms | |
parent | fd40b97705941d5479f90aeef3b20f8407859c14 (diff) | |
download | perl-2fde0ff06cfbce5bef48ed08a204260616fb0a3f.tar.gz |
Document that perl recognizes 2>&1 on the command-line on VMS.
p4raw-id: //depot/perl@19168
Diffstat (limited to 'vms')
-rw-r--r-- | vms/perlvms.pod | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vms/perlvms.pod b/vms/perlvms.pod index 9067917bb3..4db4ab20dd 100644 --- a/vms/perlvms.pod +++ b/vms/perlvms.pod @@ -308,11 +308,15 @@ C<E<gt>E<gt>file> appends stdout to C<file>, =item * -C<2E<gt>file> writes stderr to C<file>, and +C<2E<gt>file> writes stderr to C<file>, =item * -C<2E<gt>E<gt>file> appends stderr to C<file>. +C<2E<gt>E<gt>file> appends stderr to C<file>, and + +=item * + +C<< 2>&1 >> redirects stderr to stdout. =back |