How do I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in eve
According to this blog post:
find . -type f | xargs perl -pi -e 's/oldtext/newtext/g;'