On Mar 13, 2009, at 15:07 , Rafael Garcia-Suarez wrote:
In perl.git, the branch blead has been updated
<http://perl5.git.perl.org/perl.git/commitdiff/5a7ebd3db929011f81e96ab8b34e2cc2ac7730fa?hp=4d9f3eeb6fe62231730686a138499e44308619f0
>
- Log
-----------------------------------------------------------------
commit 5a7ebd3db929011f81e96ab8b34e2cc2ac7730fa
Author: Rafael Garcia-Suarez <[email protected]>
Date: Fri Mar 13 15:07:03 2009 +0100
Add -E in the command-line usage in perl.pod
-----------------------------------------------------------------------
Summary of changes:
pod/perl.pod | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/pod/perl.pod b/pod/perl.pod
index 3a10eaa..50d4378 100644
--- a/pod/perl.pod
+++ b/pod/perl.pod
@@ -13,7 +13,7 @@ B<perl> S<[ B<-sTtuUWX> ]>
S<[ B<-S> ]>
S<[ B<-x>[I<dir>] ]>
S<[ B<-i>[I<extension>] ]>
- S<[ B<-e> I<'command'> ] [ B<--> ] [ I<programfile> ]
[ I<argument> ]...>
+ S<[ B<-eE> I<'command'> ] [ B<--> ] [ I<programfile> ]
[ I<argument> ]...>
I don't find this to be an improvement. perl -eE "print 'hi'"
doesn't even work.
I suggest you make it:
S<[ B<-E> I<command> ] [ B<-e> I<command> ]... [ B<--> ]
[ I<programfile> ] [ I<argument> ]...>
instead.
--Gisle