Author: particle
Date: 2009-01-08 03:19:31 +0100 (Thu, 08 Jan 2009)
New Revision: 24803

Modified:
   docs/Perl6/Spec/S19-commandline.pod
Log:
[S19] add a sentence on unchanged syntax features, fix some pod formatting 
errors, and remember to update document metadata

Modified: docs/Perl6/Spec/S19-commandline.pod
===================================================================
--- docs/Perl6/Spec/S19-commandline.pod 2009-01-08 02:08:39 UTC (rev 24802)
+++ docs/Perl6/Spec/S19-commandline.pod 2009-01-08 02:19:31 UTC (rev 24803)
@@ -14,8 +14,8 @@
 
   Maintainer: Jerry Gay <jerry....@rakudoconsulting.com>
   Date: 12 Dec 2008
-  Last Modified: 4 Jan 2009
-  Version: 10
+  Last Modified: 7 Jan 2009
+  Version: 11
 
 This is a draft document. This document describes the command line interface.
 It has changed extensively from previous versions of Perl in order to increase
@@ -99,21 +99,25 @@
 
 =item *
 
-Many command-line options behave similarly, such as
+Many command-line options behave similarly, for example:
 
-  -a                                   # autosplit
-  -c                                   # check syntax
-  -e *line*                            # execute
-  -F *expression*                      # specify autosplit value
-  -h                                   # display help
-  -I *directory*[,*directory*[,...]]   # add include paths
-  -n                                   # act like awk
-  -p                                   # act like sed
-  -S                                   # search PATH for script
-  -T                                   # Taint mode
-  -v                                   # display version info
-  -V                                   # display verbose config info
+  Option...                            Still means...
+  -a                                   Autosplit
+  -c                                   Check syntax
+  -e *line*                            Execute
+  -F *expression*                      Specify autosplit value
+  -h                                   Display help
+  -I *directory*[,*directory*[,...]]   Add include paths
+  -n                                   Act like awk
+  -p                                   Act like sed
+  -S                                   Search PATH for script
+  -T                                   Taint mode
+  -v                                   Display version info
+  -V                                   Display verbose config info
 
+All of these options have extended syntax, and some may have slightly
+different semantics, so see L</"Option Reference"> below for the details.
+
 =back
 
 =head2 Removed Syntactic Features
@@ -302,7 +306,7 @@
 
 If you wish to run in lax mode, without strictures and warnings enabled,
 pass a value of '6' to the first -e on the command line, like C<-e6>.
-See L<Synopsis 11|S11-modules.pod/"Forcing Perl 6"> for details.
+See L<Synopsis 11|S11-modules/"Forcing Perl 6"> for details.
 
 =item --autoloop-split, -F *expression*
 
@@ -318,7 +322,8 @@
 =item --include, -I *directory*[,*directory*[,...]]
 
 Prepend directories to @*INC, for searching ad hoc libraries.  Searching the
-standard library follows the policies laid out in L<S11-modules>.
+standard library follows the policies laid out in
+L<Synopsis 11|S11-modules>.
 
 =item --use, -u *module*
 
@@ -357,7 +362,7 @@
 
 =item --taint, -T
 
-Turns on "taint" checking. See L<Synopsis 23|S23-security.pod> for details.
+Turns on "taint" checking. See L<Synopsis 23|S23-security> for details.
 Commits very early.  Put this option as early on the command-line as possible.
 
 =item --version, -v

Reply via email to