We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5a710 commit 0c42fe9Copy full SHA for 0c42fe9
pod/perlopentut.pod
@@ -307,7 +307,7 @@ One of the more interesting applications is to change files of a certain
307
name into pipes. For example, to autoprocess gzipped or compressed
308
files by decompressing them with I<gzip>:
309
310
- @ARGV = map { /^\.(gz|Z)$/ ? "gzip -dc $_ |" : $_ } @ARGV;
+ @ARGV = map { /\.(gz|Z)$/ ? "gzip -dc $_ |" : $_ } @ARGV;
311
312
Or, if you have the I<GET> program installed from LWP,
313
you can fetch URLs before processing them:
0 commit comments