http://www.perlmonks.org?node_id=634199


in reply to how to find common and not common lines in 2 files?

Since you did say you started with perl a few weeks ago,
I'd like to give you just a hint.
Why don't you read the second file line by line and ...

Besides, as this was your question, you could find common and uncommon keys of two hashes by using a foreach loop, iterating over the keys of hash a and testing if it's present in hash b.

The hash category in perlfunc should also help you.
Did you miss exists ?

michael
  • Comment on Re: how to find common and not common lines in 2 files?