I would like to run a find and replace on a html file through the command line.
my command looks something like this:
sed -e s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g index.html > index.html
When I run this and look at the file afterward, it is empty. (it deleted the contents of my file)
when i run this after restoring the file again:
sed -e s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g index.html
the stdout is the contents of the file, and the find and replace has been executed.
Why is this happening?
perl -pi -w -e 's/STRING_TO_REPLACE/REPLACE_WITH/g;' index.html– Gjorgji Taskovski Jun 27 '11 at 22:18