I am getting below error while I try to replace one url? What is the efficient way to replace URL in all files in a give directory.
sed: -e expression #1, char 62: unknown option to `s'
find . -name '*' | xargs sed -i 's/old_url/new_url/g' did not work
Here’s a way to do it in perl.