How would I go about reading all lines between two specific lines?

Lets say line 23 is where I want to start, and line 56 is the last line to read, but it is not the end of the file.

How would I go about reading lines 23 thru 56? I will be outputting them to another file.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

By row number like that is quite easy with awk:

awk 'NR >= 23 && NR <= 56'

And either way, sed makes it fun.

sed '23,56!d'

Or for a pattern,

sed '/start/,/end/!d'
link|improve this answer
lol i was going to say sed is easier to read. thanks – Mechaflash Feb 10 at 21:19
@Kevin awk 'NR >= 23 && NR <= 56' file doesn't do it, could you please provide the full command – Oleg Mikheev Feb 10 at 21:46
@oleg It works on mine, perhaps your awk doesn't do default actions. Try awk 'NR >= 23 && NR <= 56 { print $0 }' file – Kevin Feb 10 at 21:51
sorry was my fault - the original one worked fine – Oleg Mikheev Feb 10 at 22:04
time awk 'NR >= 50000 && NR <= 60000' qwe > /dev/null = 0m0.069s – Oleg Mikheev Feb 10 at 22:06
feedback

use sed. This should do it.

   sed -n '23,56p' > out.txt
link|improve this answer
feedback

I would go for sed, but a head/tail combination is possible as well:

head -n 56 file | tail -n $((56-23)) 

Well - I'm pretty sure there is an off-by-one-error inside. I'm going to find it. :)

Update:

Haha - know your errors, I found it:

head -n 56 file | tail -n $((56-23+1)) 
link|improve this answer
!!! That's really interesting! With a file of 100,000 lines time sed -n 50000,60000p qwe > /dev/null = 0m0.015s and time (head -n 60000 qwe | tail -n 10000 > /dev/null) = 0m0.003s -- KEP THINGS SIMPLE – Oleg Mikheev Feb 10 at 21:51
In most cases you loose more time by typing the head/tail combination (and finding the off-by-one error) than you'll save, compared to sed. – user unknown Feb 10 at 21:58
it all depends on what's the purpose of the command - if it's a part of some frequently executed job then it would be worth it – Oleg Mikheev Feb 10 at 22:01
Yes. Looked more like a one-time-job to me. Testing with some own files, dictionaries are of sufficient length (ogerman, utf-german, pgdict) I get smaller differences (1:2 to 1:4). – user unknown Feb 10 at 23:19
@Oleg With 60000q on the sed, I get sed running twice as fast as head|tail. Without it, they run about the same speed. Are you sure of your timings? – William Pursell Feb 11 at 2:19
show 2 more comments
feedback

Sed can do that:

$ sed -n 23,56p yourfile

EDIT: as commenters pointed out making sed stop processing after the last line of the interval will make sed perform as fast as head-tail combination. So the most optimal way of getting the lines would be

$ sed -n '23,56p;57q' yourfile

But performance will greatly depend on the file you're processing, the interval and lots of other factors. So in case you're developing some script to be run frequently on known data testing all three methods mentioned in answers (sed, awk, head-tail) would be a good idea.

link|improve this answer
3  
Well, sed has better performance than the head-tail combination (single process), especially if you are doing: sed -n '23,56p;57q' FILE. – Zsolt Botykai Feb 10 at 22:41
1+ for Zsoft: I like the 57q -- no more processing after that -- very cool. – Hai Vu Feb 11 at 18:36
feedback

This might work for you:

sed '1,22d;56q' file

or this:

sed '23,56!d;56q' file

or this:

awk 'NR>56{exit};NR==23,NR==56' file
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.