Well I want to search for a string and find number of occurrences in a file opened using Vi editor.
|
|
:g/xxxx/d This will delete all the lines with pattern, and report how many deleted. Undo to get them back after. |
||||||
|
|
|
You need the
and a particular word:
See If you simply type in:
then the status line will give you the number of matches in vi as well. |
||||||
|
|
|
:%s/string/string/g will give the answer. |
||
|
