im trying to put together a lil' script thatll sort email addresses for me.
ive a small file with:
blah@aol.com
blah@yahoo.com
blah@msn.com
blah2@aol.com
blah2@yahoo.com
blah2@msn.com
blah3@aol.com
blah3@yahoo.com
blah3@msn.com
in it and this script DOES sort them, only it loses blah@aol.com somewhere in the middle.
any idea whats wrong?
#!/usr/bin/perl
use Mail::AddressSort;
open(EMAILS, "/root/emails") or die "Couldn't open email list\n";
while (<EMAILS>)
{
@addresses = <EMAILS>;
$list=Mail::AddressSort->new();
$list->input(@addresses);
(@addresses)=$list->sorted();
print "@addresses";
}
Edited by mirod, 2002-08-12: added <pre> tags around the email address list.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.