Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: upto match please, my one-lina!!

by roboticus (Chancellor)
on Jun 09, 2006 at 00:24 UTC ( [id://554392]=note: print w/replies, xml ) Need Help??


in reply to upto match please, my one-lina!!

Firefly258:

Howzabout this?

perl -ne 'print @t if /foo/; push @t,$_; shift @t if $#t>5' file
You can even slice @t in the print if you want to have a larger gap between the last printed item and the regular expression...

UPDATE: I golfed it down a little:

perl -ne 'print @t if /foo/; @t=(@t[1..4],$_)' file
--roboticus

Replies are listed 'Best First'.
Re^2: upto match please, my one-lina!!
by jwkrahn (Abbot) on Jun 09, 2006 at 03:56 UTC
    That doesn't print the "---\n" string or the correct lines. You want something like:
    perl -ne'@t=(@t[1..4],$_);/regex/&&die@t,"---\n"' file
      D'oh!

      I was having so much fun playing with one-liners that I forgot the parameters of the problem. I love that die trick.... I'll have to try it:

      perl -ne '@t=(@t[1..4],$_,"---\n");die@t if/foo/' file
      --roboticus
        @t=(@t[1..4],$_,"---\n")
        You are adding two lines for every one line you remove so every second line will be "---\n".

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-24 22:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found