Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In vim when my cursor is on the first line I can press:

100dd

to delete the first 100 lines.

But how do I delete all lines except the last 100 lines?

share|improve this question

3 Answers

up vote 41 down vote accepted

In normal mode:

G100kdgg

In other words:

G     -> go to last line
100k  -> go up 100 lines
dgg   -> delete to top of file
share|improve this answer
simple and elegant. I like it! – technomalogical Aug 10 '09 at 17:51
This doesn't work if the buffer has fewer than 100 lines. It will incorrectly delete all lines because the 100k part will have no effect. – Don Cruickshank Jan 3 at 0:30

In ex mode:

:1,$-100d

Explanation: ":" puts the editor in "ex mode". The d command of ex mode deletes lines, specified as a single line number, or a range of lines. $ is the last line, and arithmetic can be applied to line numbers.

share|improve this answer
3  
FWIW this is the better answer, IMHO – Nathan Fellman Aug 22 '09 at 8:15

An alternative general purpose solution:

:%!tail -100

You can use any shell command after the ! to arbitrarily modify the current buffer. Vim starts the command and feeds the current file to stdin, and reads the new buffer from stdout.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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