Hi I am using the following to search a directory recursively for specific string and replace it with another:
grep -rl oldstr path | xargs sed -i 's/oldstr/newstr/g
this works okay. the only problem is that if the string doesn't exist then sed fails because it doesn't get any arguments. this is a problem for me since i'm running this automatically with ANT and the build fails since sed fails.
is there a way to make it failproof in case the string is not found ?
i'm interested in one line simple solution i can use (not necessairly with grep or sed but with common unix commands like these)
