I do that sort of thing with various lists and flat-file tables so often that I wrote my own utility to make it easy and flexible; I posted it here -- it's a few years old, but I still use it on almost a daily basis.

Update: Grandfather's code is of course more relevant for you, and neater, because it does a bunch of files in one swoop. My own tool just compares two lists at a time (like "diff" or "cmp"), but for many cases, you can just chain runs together through a pipe -- e.g. print rows in file1 whose initial field does not match any rows in file2 or file3, and do match rows in file4:

cmpcol -x1 -l1 file1 file2 | cmpcol -x1 -l1 stdin file3 | cmpcol -i -l +1 stdin file4

In reply to Re: comparing lists by graff
in thread comparing lists by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.