Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Extracing (and excluding) IP's from a file

by mjscott2702 (Pilgrim)
on Nov 09, 2010 at 15:39 UTC ( [id://870322]=note: print w/replies, xml ) Need Help??


in reply to Extracing (and excluding) IP's from a file

while(<>) { next until /vfiler1/; print (split)[2], "\n" if /^IP address:/; }

which would consume lines until the "vfiler1" line, then split lines beginnning with "IP address" on whitespace and print the third field - the address you are looking for.

Not tested! :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-04-18 20:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found