I have a text file (utf8):
Please help me with regexp. I want to replace
<p>
TERRANO...
</p>
with: empty space. :)
And:
<td width="20%" align="left" class="thead">Rám:</td>
With:
<td width="20%" align="left" class="thead">Something else:</td>
Just word "Rám" is also OK to replace.
I found this line, but I dont know how to use it:
find . -type f -exec perl -p -i -e "s/SEARCH_REGEX/REPLACEMENT/g" {} \;