if you are on a unix machine or a linux machine, and your list is a text file (lets say mylist.txt); then you can eliminate duplicates in this way:
sort -f mylist.txt | uniq > mylist2.txt the -f option ignores the case of the characters (ie. upper or lower). On 6/20/19, daniel <[email protected]> wrote: > Hi Friends, > > Is there a way to remove duplicates from a mail list using a TextEdit with > OpenOffice on a Mac Computer? > > Thank you for your time! > > daniel > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
