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;