On Wed, 12 Jul 2000, Michael Brach wrote:

> Managing a few lists for professional associations, I sometines have to
> sort email addresses. It is very useful 
>  - to do this alphabetically from the end of the address

        Plain unix sort can also do this. If you ment sorting
        by domain this can be done with something like (assuming
        addresses are one address per line):

        sort -t@ -k2 addressfile

        This spits the addressfile sorted by domain to stdout.

-- 
Mika Tuupola                      http://www.appelsiini.net/~tuupola/


Reply via email to