Ric Moore wrote:
Anyone know of a good way to merge two cvs lists that have duplicate entries?? Thanx, Ric
Assuming you mean csv, try: sort -u file1 file2 >mergedbut that will only eliminate lines that are exact duplicates. You can use the -t and field options to control the fields used for sort ordering but I think the whole line has to match for the unique test.
-- Les Mikesell lesmikesell@xxxxxxxxx