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 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?

share|improve this question
1  
Perl alternative: perl -pi -w -e 's/STRING_TO_REPLACE/REPLACE_WITH/g;' index.html – Gjorgji Taskovski Jun 27 '11 at 22:18

6 Answers

up vote 59 down vote accepted

When the shell sees > index.html in the command line it opens the file index.html for writing, wiping off all its previous contents.

To fix this you need to pass the -i option to sed to make the changes inline and create a backup of the original file before it does the changes in-place:

sed -i.bak s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g index.html

Without the .bak the command will fail on some platforms, such as Mac OSX.

share|improve this answer
3  
Saying truncates the file instead of opens the file probably makes it clearer. – Mikel Mar 2 '11 at 22:50
3  
At least on my mac, the first suggestion doesn't work... if you're doing in-place replacement on a file, you have to specify an extension. You can, at least, pass in a zero-length extension though: sed -i '' s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g index.html – Tom Lianza May 12 '11 at 3:57

An alternative, useful, pattern is:

sed -e 'script script' index.html > index.html.tmp && mv index.html.tmp index.html

That has much the same effect, without using the -i option, and additionally means that, if the sed script fails for some reason, the input file isn't clobbered. Further, if the edit is successful, there's no backup file left lying around. This sort of idiom can be useful in Makefiles.

Quite a lot of seds have the -i option, but not all of them; the posix sed is one which doesn't. If you're aiming for portability, therefore, it's best avoided.

share|improve this answer
+1 for considering portability – user1207217 May 2 at 13:42

use sed's -i option, e.g.

sed -i bak -e s/STRING_TO_REPLACE/REPLACE_WITH/g index.html
share|improve this answer

And the ed answer:

printf "%s\n" '1,$s/STRING_TO_REPLACE/STRING_TO_REPLACE_IT/g' w q | ed index.html

To reiterate what codaddict answered, the shell handles the redirection first, wiping out the "input.html" file, and then the shell invokes the "sed" command passing it a now empty file.

share|improve this answer

You should try using the option -i for in-place editing.

share|improve this answer

I tried the sed an perl commands but it replaces the whole line containg the string to replace

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.