http://qs321.pair.com?node_id=885930


in reply to Filtering lines from one file from another

Another non-Perl solution would be the Unix command "comm"
comm -23 file1 file2 would do it.
I like comm because you can get lines in file1 and not in 2, in 2 and not in 1 and lines common to both.