What is the best way to add some characters at the start and end of each line? Can it be done using Vim, or some other way?
better util would be sed (especially if you need to script it)
cat foo.txt | sed s/^\(.*\)$/"\1"/g