I have 2 files (1 old and 1 new) that have the same structure that I need to compare and then return data that is unique to the new list.
Each file is TAB delimited and looks something like this (each about 16k lines long):
8445 200807
8345 200807
ect. ect.
I have a basic understanding of doing comparisons using a loop, but I'm not sure how to compare corresponding columns of data against 2 other corresponding columns.
EDIT: Sorry, there is some confusion on what I want as the result. So if I this as my old file:
8445 200807
8345 200807
And this is my new file:
8445 200807
8445 200809
I want the script to return:
8445 200809
So the pair has to be unique to the new file. If that makes sense.