Matej Cepl wrote:
Jonathon Blake wrote:

I have 250 pages (13,750 lines) of abbreviations, of which at least a
third are duplicates.
[This is _after_ doing "cat textfile | sort | uniq > uniq_line_listings"


Try
        $ cat textfile | sort -u > uniq_line_listings
instead. Other thing is Data/Standard Filter (use no criteria, remove
duplicates, and copy to somewhere else).

Matej



I'm interested in why you believe the two commands would yield different results? AFAIK they should be completely equivalent.

Jonathon: Are you *sure* the duplicates are really duplicates? Have you checked for appended spaces? Is this an ASCII file? Could you have characters that *look* the same, but really aren't? Because it's really hard for me to believe that sort and uniq have any bugs at this point.

--

Rod


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to