@ARGV:perl命令⾏参数
当perl脚本运⾏时,从命令⾏上传递给它的参数存储在内建数组@ARGV中,@ARGV是PERL默认⽤来接收参数的数组,可以有多个参数,$ARGV[0]是表⽰接收到的第⼀个参数,$ARGV[1]表⽰第⼆个。
使⽤⽅法为:
perl my.pl $ARGV[0] $ARGV[1]
看⼀个具体例⼦:
⽐如⽂件1的内容:
1320238
1320239
1320239
1320238
1320238
1320238
1320235
1320237
⽂件2的内容:
102 5709072117805887 4001 1301854
102 5709072117807510 4001 1320292
102 5709072117838653 4001 1301857
102 5709072117814280 4001 1305832
102 5709072117839397 4001 1310673
102 5709072117839335 4001 1311270
我想先把⽂件1的内容读取出来,然后读取⽂件⼆的内容,在读取⽂件2的内容的时候,⽂件2的最后⼀列需要包
含在上⽂件1内。
[root@localhost ~]$ perl ex. 2.txt
[root@localhost ~]$ cat ex.pl
#!/usr/bin/perl
use strict;
open(ONE,"$ARGV[0]") or die $!;
open(TWO,"$ARGV[1]") or die $!;
my %hash;
while (<TWO>) {
chomp;
my @line=split;
perl是用来干嘛的
my $column4=$line[3];
$hash{$column4}=$_;
}
while (<ONE>) {
chomp;
print $hash{$_} if defined $hash{$_};
}
print"\n";
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论