summaryrefslogtreecommitdiff
path: root/vms/perlvms.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2001-11-22 12:54:16 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-23 16:41:13 +0000
commit076988851d1cdb6cc455615593d7b9380b21955a (patch)
tree74e549764502fa568cb83cedc33ceefbd21101ff /vms/perlvms.pod
parent67d143eceea774b64914343793da246aa41f6fb5 (diff)
downloadperl-076988851d1cdb6cc455615593d7b9380b21955a.tar.gz
Re: [DOC PATCHES] pod cleanups
Message-Id: <slrn9vptci.klv.rgarciasuarez@rafael.kazibao.net> p4raw-id: //depot/perl@13206
Diffstat (limited to 'vms/perlvms.pod')
-rw-r--r--vms/perlvms.pod30
1 files changed, 24 insertions, 6 deletions
diff --git a/vms/perlvms.pod b/vms/perlvms.pod
index c09e047169..35776a49d4 100644
--- a/vms/perlvms.pod
+++ b/vms/perlvms.pod
@@ -194,7 +194,7 @@ so we can try to work around them.
=head2 Wildcard expansion
File specifications containing wildcards are allowed both on
-the command line and within Perl globs (e.g. <CE<lt>*.cE<gt>>). If
+the command line and within Perl globs (e.g. C<E<lt>*.cE<gt>>). If
the wildcard filespec uses VMS syntax, the resultant
filespecs will follow VMS syntax; if a Unix-style filespec is
passed in, Unix-style filespecs will be returned.
@@ -244,11 +244,29 @@ directory specifications may use either VMS or Unix syntax.
Perl for VMS supports redirection of input and output on the
command line, using a subset of Bourne shell syntax:
- <F<file> reads stdin from F<file>,
- >F<file> writes stdout to F<file>,
- >>F<file> appends stdout to F<file>,
- 2>F<file> writes stderr to F<file>, and
- 2>>F<file> appends stderr to F<file>.
+=over
+
+=item *
+
+C<E<lt>file> reads stdin from C<file>,
+
+=item *
+
+C<E<gt>file> writes stdout to C<file>,
+
+=item *
+
+C<E<gt>E<gt>file> appends stdout to C<file>,
+
+=item *
+
+C<2E<gt>file> writes stderr to C<file>, and
+
+=item *
+
+C<2E<gt>E<gt>file> appends stderr to C<file>.
+
+=back
In addition, output may be piped to a subprocess, using the
character '|'. Anything after this character on the command