How do I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in eve
An one nice oneliner as an extra. Using git grep.
git grep -lz 'subdomainA.example.com' | xargs -0 perl -i'' -pE "s/subdomainA.example.com/subdomainB.example.com/g"