When running perl -n
or perl -p
, each command line argument is taken as a file to be opened and processed line by line. If you want to pass command line switches to that script, how can I do that?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
There are three primary ways of passing information to Perl without using STDIN or external storage.
Arguments
When using
-n
or-p
, extract the arguments in theBEGIN
block.perl -pe'BEGIN { ($x,$y)=splice(@ARGV,0,2) } ...$x...$y...' -- "$x" "$y" ...
Command-line options
In a full program, you'd use Getopt::Long, but
perl -s
will do fine here.perl -spe'...$x...$y...' -- -x="$x" -y="$y" -- ...
Environment variables
X="$x" Y="$y" perl -pe'...$ENV{X}...$ENV{Y}...' -- ...
回答2:
Here is a short example program (name it t.pl
), how you can do it:
#!/bin/perl
use Getopt::Std;
BEGIN {
my %opts;
getopts('p', \%opts);
$prefix = defined($opts{'p'}) ? 'prefix -> ' : '';
}
print $prefix, $_;
Call it like that:
perl -n t.pl file1 file2 file3
or (will add a prefix to every line):
perl -n t.pl -p file1 file2 file3