Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question

4 Answers

You want:

:%s/^/ABC/g

That will put ABC in front of every line.

Don't forget the : in front

share|improve this answer
5  
the g can be omitted as there will only be one start of line in a line. The ending / can also be omitted. Final command: :%s/^/ABC – Peter Rincker Jul 14 '11 at 18:35

I really love the normal command for things like these:

:%normal IABC
share|improve this answer
1  
+1 for a neat alternate approach – Jeet Jul 15 '11 at 0:24
1  
+1 for teaching me something new about vim. – Lynch Jul 15 '11 at 2:51

Doesn't :%s/^/ABC/ work for you?

share|improve this answer

As others have said, :%s/^/ABC will do the trick. Consider what ^ means. It is a logical construct, not an actual character in the file. Therefore, you're not really replacing it, so you don't have to use ^ABC. In fact, as you've seen, ^ is treated as a string in that context.

If you wanted to skip lines that only contain whitespace, you could use :v/^[:space:]*$/s/^/ABC.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.