Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Delete every n line

by ambrus (Abbot)
on May 09, 2008 at 19:22 UTC ( [id://685750]=note: print w/replies, xml ) Need Help??


in reply to Delete every n line

Others have given solutions with extensions in gnu sed or tricky perl commands. There's however a very easy way to solve this with the unix toolkit that should work everywhere. No need for perl or awk or sed or anything. Suppose the input file is named inp. Then run the following shell commands.

( cat inp; echo ) > gre rm spl.* split -l 25 gre spl. head -qn-1 spl.* > out rm gre spl.*
The output is in the file out.

Update 2010-03-07: See Re^2: Joining two files on common field for a list of other nodes where unix textutils is suggested.

Log In?
Username:
Password:

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

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

    No recent polls found