Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to run this sed script on all the files in a directory:

sed.s:

/<constants>/a\
<const type="profElem" name="mission_description" value="NCEP and NCAR Reanalysis Monthly Means and Other Derived Variables"/>

but whenever I run:

find . -exec sed -f sed.s -i {} \; 

I get the error:

sed: -i may not be used with stdin

How do I get this to work?

share|improve this question
Would be interesting to see the list of files. Could you post the result of find . -exec echo {} \; – Raphael B. Jan 7 '11 at 22:52

1 Answer

up vote 2 down vote accepted

It appears that your version of sed requires you to pass an extension for backups to the -i option. If you feel pretty confident in your command you could try to give it a zero-length extension like so:

find . -exec sed -f sed.s -i '' {} \; 
share|improve this answer
Ah, I was missing the quotes... – victor Jan 7 '11 at 22:51

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.