- 论坛徽章:
- 0
|
my $rootDir =$ARGV[0];
my $date = $ARGV[1];
my $csvDir = $rootDir . $date ."/csv/";
my $output1 = $rootDir . $date . "/fielname_url_row.csv";
my $output2 = $rootDir . $date . "/url.csv";
my $chongfu = $rootDir . $date . "/chongfu.csv";
my @srcFiles = ();
find sub {push @srcFiles ,$File::Find::name if -f $_ && /\.csv$/i},$csvDir;
my $row = 0;
foreach my $csvFile(@srcFiles){
print "$csvFile\n";
$row++;
my @lines = loadIgnoreTitle($csvFile);
open RR, ">$output1";
foreach my $line(@lines){
my @fields = split(/,/,$line);
my $url = $fields[6];
print RR $url . "\n" ;
}
close RR;
open RH, ">$chongfu";
my @urls = loadContainTitle($output1);
my %count = ();
my @chongfu = grep { $count{$_} == 2 }
grep{++$count{$_} > 1 } @urls;
foreach my $line2(@chongfu){
print RH $csvFile . $line2 . $row . "\n";
}
close RH ;
}
试了n遍 不知道问题出在哪。。。。。。大家帮忙看看
@crops = qw(wheat corn barley rice corn soybean hay
alfalfa rice hay beets corn hay);
my %count = ();
@duplicates = grep { $count{$_} == 2 }
grep { ++$count{$_} > 1 } @crops;
print "@duplicates\n";
我是按照这个例子写的,例子运行都没问题啊。。。。。。。 |
|