in reply to HoH problem
open(my $fh, '<', 'validate') or die("Unable to open validation file: $!\n"); while (<$fh>) { my ($name, $id) = (split); for my $file (keys %data) { if (exists $data{$file}{$id}) { print "Found $id in file $file with value $data{$file}{$id}.\ +n"; } } }
Other problems fixed:
|
|---|