I have a 40 MB csv file with 50,000 records. Its a giant product listing. Each row has close to 20 fields. [Item#, UPC, Desc, etc]
How can I,
a) Find and Pri
Try the following:
# Sort before using the uniq command sort largefile.csv | sort | uniq -d
uniq is a very basic command and only reports uniqueness / duplicates that are next to each other.