I have a 2.8GB sql dump file in linux. I need to delete lines 18 through 3000, but I can't open it in a text editor like vim because it's so big.

Any suggestions? I assume you could use sed or something similar, I just don't know the command.

link|improve this question
feedback

1 Answer

up vote 12 down vote accepted

I think that's what sed was designed for:

sed '18,3000d' input.txt > output.txt

Resources

link|improve this answer
I love sed! sed rocks! – Paul Sep 11 '10 at 8:55
feedback

Your Answer

 
or
required, but never shown

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