# Basic syntax: dd # Note, add a number in from of dd to delete that many lines, e.g.: 5dd # Delete the next 5 lines
# navigate to line and type dd
:1,$d
:1d|g/^/+d # Every other odd line
:g/^/+d # Every other even line