(unlink $file3) if (-e $file3);
open (OUTPUT,">;>;$file3"
open (INPUT1, $file1) or die "Can't open $file1";
open (INPUT2, $file2) or die "Can't open $file2";
while ($line1 = <INPUT1>{
while ($line2 = <INPUT2> {
if ($line1 ne $line2){
print OUTPUT "$file1\n"; 改为 print OUTPUT "$file1"."\n";
}
}
}
close (INPUT1);
close (INPUT2);
close OUTPUT;作者: deathcult 时间: 2003-05-29 11:42 标题: 如何进行匹配删除? file1:
EP17001
EP24014
EP24016
EP7001
file2:
EP17001
EP24015
EP23014
EP7002
(unlink $file3) if (-e $file3);
open (OUTPUT,">;>;$file3"
open (INPUT1, $file1) or die "Can't open $file1";
open (INPUT2, $file2) or die "Can't open $file2";
while ($line1 = <INPUT1>{
while ($line2 = <INPUT2> {
if ($line1 ne $line2){
print OUTPUT "$file1]\n";
#蓝色部分改为$line1
}
}
}
close (INPUT1);
close (INPUT2);
close OUTPUT;作者: apile 时间: 2003-06-02 20:05 标题: 如何进行匹配删除? [quote="anonimousboy"]\n";
#蓝色部分改为$line1
}
}
}
close (INPUT1);
close (INPUT2);
close OUTPUT;[/quote]