Change 33559 by [EMAIL PROTECTED] on 2008/03/25 09:46:25 Subject: [perl #51964] Typo on regular expression at perlopentut manual page. From: [EMAIL PROTECTED] (via RT) <[EMAIL PROTECTED]> Date: Fri, 21 Mar 2008 03:31:04 -0700 Message-ID: <[EMAIL PROTECTED]>
Affected files ... ... //depot/perl/pod/perlopentut.pod#26 edit Differences ... ==== //depot/perl/pod/perlopentut.pod#26 (text) ==== Index: perl/pod/perlopentut.pod --- perl/pod/perlopentut.pod#25~32461~ 2007-11-23 02:58:24.000000000 -0800 +++ perl/pod/perlopentut.pod 2008-03-25 02:46:25.000000000 -0700 @@ -307,7 +307,7 @@ name into pipes. For example, to autoprocess gzipped or compressed files by decompressing them with I<gzip>: - @ARGV = map { /^\.(gz|Z)$/ ? "gzip -dc $_ |" : $_ } @ARGV; + @ARGV = map { /\.(gz|Z)$/ ? "gzip -dc $_ |" : $_ } @ARGV; Or, if you have the I<GET> program installed from LWP, you can fetch URLs before processing them: End of Patch.