in reply to Compare 2 Hashes w/ Multiple Variables
foreach my $key (keys %hash1) { if (exists $hash2{$key}) { print "$key\n"; } } close IN; [download]