http://qs1969.pair.com?node_id=105340


in reply to Comparing contents of 2 Hashes of Hashes

following should work:

foreach $host (keys %localDigest) { foreach $file (keys %{ $localDigest{$host} }) { if (exists $remoteDigest{$host}{$file}) { # replace with compare print "$localDigest{$host}{$file} = $remoteDigest{$host}{$file} +\n"; } else { print "file $host $file missing\n"; } } }

isn't it possible to compare your files,host and checksum in your original foreach loop, instead of building this complex hash structure?

MP