- Find duplicate lines in a sorted file - After sorting a file you will often find that some duplicate data, or you may be given various lists that need deduping. sort and uniq will quickly and easily remove duplicates, lsit only the dupilcates or only the unique data. sort myfile.txt | uniq ...

