Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Getting lines in a file between two patterns

by Utilitarian (Vicar)
on Jul 05, 2012 at 05:13 UTC ( [id://979950]=note: print w/replies, xml ) Need Help??


in reply to Getting lines in a file between two patterns

One option would be to use the range operator eg.
perl -e 'while (<>){print if (/^START/../^END/);}' input.txt
print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Replies are listed 'Best First'.
Re^2: Getting lines in a file between two patterns
by frozenwithjoy (Priest) on Jul 05, 2012 at 05:21 UTC
    This will also print START/END, if this is not desired, try:
    perl -ne 'if (/START/../END/) {print unless /START/ or /END/}'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://979950]
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-25 02:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found