Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Understanding transformation sorts (ST, GRT), the details

by jdporter (Paladin)
on May 18, 2005 at 13:30 UTC ( [id://458196]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @ips =
        # note: this converts any "unusual" reps to dotted-quad
    ...
        sort
        map { inet_aton $_ }
        @ips;
    
  2. or download this
    @ips =
        map { substr $_, 4 }
        sort
        map { /(\d[.\d]+\d)/; inet_aton($1) . $_ }
        @ips;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://458196]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-20 00:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found