Probably this is a very basic question for shell programmers. But suppose I have a text file A and B and B is a subset of A.
I want to create a text file C which contains (A-B) data.
So omit all the common lines .
The line in files are numeric data: like
id , some aspect, other aspec.
Thanks.
sort+uniqmethod does not work when there are unmatched duplicated lines inA. Theawkandcommmethods do work with duplicates inA. – Peter.O Apr 27 '12 at 5:50