菜鸟问题:关于perl @ARGV
创建两个文件文件名:1.txt内容:13202381320239132023913202381320238132023813202351320237文件名:2.txt内容...
创建两个文件
文件名:1.txt
内容:
1320238
1320239
1320239
1320238
1320238
1320238
1320235
1320237
文件名:2.txt
内容:
102 5709072117805887 4001 1301854
102 5709072117807510 4001 1320292
102 5709072117838653 4001 1301857
102 5709072117814280 4001 1305832
102 5709072117839397 4001 1310673
102 5709072117839335 4001 1311270
perl脚本
名称: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;
my $column4=$line[3];
$hash{$column4}=$_;
}
while (<ONE>) {
chomp;
print $hash{$_} if defined $hash{$_};
}
print"\n";
命令行参数:ex.pl 1.txt 2.txt
结果显示:No such file or directory at ex.pl line 4.
我的问题:应如何修改程序?
是不是两个文本(1.txt 2.txt)放错了地方? 展开
文件名:1.txt
内容:
1320238
1320239
1320239
1320238
1320238
1320238
1320235
1320237
文件名:2.txt
内容:
102 5709072117805887 4001 1301854
102 5709072117807510 4001 1320292
102 5709072117838653 4001 1301857
102 5709072117814280 4001 1305832
102 5709072117839397 4001 1310673
102 5709072117839335 4001 1311270
perl脚本
名称: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;
my $column4=$line[3];
$hash{$column4}=$_;
}
while (<ONE>) {
chomp;
print $hash{$_} if defined $hash{$_};
}
print"\n";
命令行参数:ex.pl 1.txt 2.txt
结果显示:No such file or directory at ex.pl line 4.
我的问题:应如何修改程序?
是不是两个文本(1.txt 2.txt)放错了地方? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询