summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2013-07-16 12:11:55 +1000
committerTony Cook <tony@develop-help.com>2013-07-23 10:02:26 +1000
commit24ffa3099a4f0f4904129f4f4633846134d0b51f (patch)
tree7bc60fe6c62d6b04ccc0272003361aaa4d524570 /pod/perlrun.pod
parent3271c5f82f49e4fe01b86ca11bb7305e0b5ba12a (diff)
downloadperl-24ffa3099a4f0f4904129f4f4633846134d0b51f.tar.gz
[perl #116190] -F and -a now imply -n
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r--pod/perlrun.pod10
1 files changed, 7 insertions, 3 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index 05dea4ea17..dbaa12c033 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -265,6 +265,8 @@ is equivalent to
An alternate delimiter may be specified using B<-F>.
+B<-a> implicitly sets B<-n>.
+
=item B<-C [I<number/list>]>
X<-C>
@@ -487,9 +489,11 @@ perl, you can check the value of C<$Config{usesitecustomize}>.
=item B<-F>I<pattern>
X<-F>
-specifies the pattern to split on if B<-a> is also in effect. The
-pattern may be surrounded by C<//>, C<"">, or C<''>, otherwise it will be
-put in single quotes. You can't use literal whitespace in the pattern.
+specifies the pattern to split on for B<-a>. The pattern may be
+surrounded by C<//>, C<"">, or C<''>, otherwise it will be put in single
+quotes. You can't use literal whitespace in the pattern.
+
+B<-F> implicitly sets both B<-a> and B<-n>.
=item B<-h>
X<-h>