sed replacement does not work
- by Robin Hood
Hello, I have trouble using sed.
I need to replace some lines in very deprecated HTML sites which consist of many files.
My script does not work and I do not why. When I tried to find exact pattern with Netbeas it worked.
find . -type f -name "*.htm?" -exec sed -i -r 's/ing\. Šuhajda Dušan\, Mírová 767\, 518 01 Dobruška\, \+420 737 980 333\,/REPLACEMENT/g' {} \;
Where is the mistake?
Is there an alternative to replace text without searching regular expression but plain text?
Thanks for any respond.