how could i add some text like 'ABC' at the beginning of all the lines in vi editor? this doesnot work!
%s/^/^ABC
i know this command is used for replacing text
%s/vggv/uggv/g
|
|
|
You want:
That will put ABC in front of every line. Don't forget the |
|||||
|
|
I really love the normal command for things like these:
|
|||
|
As others have said, If you wanted to skip lines that only contain whitespace, you could use |
|||
|
|