How do I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in eve
For anyone using silver searcher (ag)
ag
ag SearchString -l0 | xargs -0 sed -i 's/SearchString/Replacement/g'
Since ag ignores git/hg/svn file/folders by default, this is safe to run inside a repository.