Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: How to read every 16 line of file ?

by anonymized user 468275 (Curate)
on May 13, 2011 at 13:06 UTC ( [id://904660]=note: print w/replies, xml ) Need Help??


in reply to How to read every 16 line of file ?

perl -ne 'if ( ++$x == 16 ){ print $_; $x = 0; }' <filename

Update: but only if the rest of the logic is simple enough for inclusion in a one-liner like this.

update2: modified to shift target line nos to 16,32 etc. - a weird brainbug made me think 1,17 etc. was wanted - I need a holiday, lol!

One world, one people

Log In?
Username:
Password:

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

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

    No recent polls found