Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 195 Bytes

delete_all_lines_matching_pattern.md

File metadata and controls

20 lines (18 loc) · 195 Bytes

How to delete all lines matching a pattern

:g/pattern/d

eg:

1 line one
2 line two
3 line three
4 line two
5 line four

:g/two$/d

1 line one
3 line three
5 line four