1

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.

icco
  • 193
  • 8

1 Answers1

13

I think that's what sed was designed for:

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

Resources

zigdon
  • 471
  • 1
  • 4
  • 8