I want to add a " character to the begin of every line in a text file. Is there any simple solution?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
I would consider one of these ways:
Edit file in place, saves a backup in "inputfile.txt.bak".
Use shell redirection to print the output to a new file. |
|||
|
Another couple of suggestions: just in the shell:
ed:
|
|||
|
|
sed -i 's/^/"/' file– hmontoliu Jul 27 '11 at 16:14