|
I got it:
:g/outdated/d
This command tells vi to do a global search for "outdated" and to delete any line containing that text.
:g/out dated/d
This command tells vi to do a global search for "out dated" and to delete any line containing that text--including the space.
|