Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: One-liner parses ippl log for suspicious packets

by blakem (Monsignor)
on Jan 09, 2002 at 04:20 UTC ( [id://137321]=note: print w/replies, xml ) Need Help??


in reply to (code) One-liner parses ippl log for suspicious packets

From perlre:
`(?<!pattern)' A zero-width negative look-behind assertion. For example `/(?<!bar)foo/' matches any occurrence of "foo" that does not follow "bar". Works only for fixed-width look-behind.
So, how about:
perl -ne 'print if /(?<!time)\(/' < ippl.log > ippl.noteworthy

-Blake

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-19 12:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found