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


in reply to Re^2: Find duplicate lines from the file and write it into new file.
in thread Find duplicate lines from the file and write it into new file.

but then you would lose the duplicates, i think the OP wanted to find the duplicates, perhaps somthing along the lines of sort | uniq -c , then they could read the file and look at the counts



This is not a Signature...

Replies are listed 'Best First'.
Re^4: Find duplicate lines from the file and write it into new file.
by davidrw (Prior) on Jan 04, 2007 at 13:51 UTC
    uniq can give you the dups directly:
    sort foo.txt | uniq -d