InterviewSolution
Saved Bookmarks
| 1. |
How Can You Delete Blank Lines Using The Vi Editor? |
|
Answer» The :G/^$/d COMMAND can be USED to delete blank lines using the VI editor. The :g/^$/d command can be used to delete blank lines using the vi editor. |
|