我想在要比较的文件中查找特定行,这些行在我的 SourceFile 中不可用。我有一个找不到的错误
open INPUT, "SourceFile";
@input = <INPUT>;
close INPUT;
open FILE, "tobecompared";
while (<FILE>){
if (/>/) {
push(@array, $_);
}
}
foreach $temp (@array) {
$temp =~ s/>//;
$temp =~ s/\s.*\n$//g;
if (@input !~ $temp){
print $temp."\n";
}
}
close FILE;