If I want to select particular text of line and delete lines, how can I do that in vi (give the simplest means)?
4 Answers
You can also use V in view mode to launch "VISUAL LINE" mode. Select your lines and type d to delete them.
Move to the line you want to delete, either using the arrow keys or the j/k keys, and type dd. You can then save and exit by typing :x (or ZZ). A number can also be prefixed to dd to delete multiple lines, e.g. 3dd deletes 3 lines.
For more Vi commands, take a look at this handy Vi cheat sheet.
1go to the first line you wish to delete, and type (in view mode) d[x-1] to delete x lines.
Another tip: if you want to delete a text paragraph, move to beginning of that paragraph with { and then type d}
Or, in other words, {d}
5