Martin Baehr wrote:
On Sat, Oct 25, 2003 at 03:26:43PM +1300, Gareth Williams wrote:

You could cat file | head -n 96 | tail -n 33 :)


cat is almost always unnecessary:
head -96 file | tail -34

For completeness (and while we are on the topic):


tail +63 file | head -34

Cheers<
Carl.




Reply via email to