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?
|
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? |
||||
|
|
|
In normal mode:
In other words:
|
|||||
|
|
In ex mode:
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. |
|||||
|
|
An alternative general purpose solution:
You can use any shell command after the |
|||
|
|