Quote:
Originally Posted by orahi001
Hello,
I can remove duplicate entries in a file by:
sort File1 | uniq > File2
but how can I remove duplicates without sorting the file?
I tried cat File1 | uniq > File2 but it doesn't work
thanks
|
Many ways using awk or
perl. Search this site using the duplicates keyword.