I have a large text file that I need to add text at the beginning of each line.
This is the text I need to add:
http://test.mysite.com/
I believe that I can use command line similar to this:
sed 's/^/Text Here/' file.txt > new-file.txt
The problem is that I have slashes in the text I'm adding so I don't know if that's messing it up or if there's a better way to do it...