InterviewSolution
Saved Bookmarks
| 1. |
How Can You Replace A String In A File In The Vi Editor? |
|
Answer» A STRING in a FILE can be replaced by using the %s/<OLD string>/<new string>/G command. A string in a file can be replaced by using the %s/<old string>/<new string>/g command. |
|