I did have to do a lots of modification in almost 600 files, and i did it using Linux SED: grep -ilr ‘UA-1234567-1’ * | xargs -i@ sed -i ‘s/UA-1234567-1/UA-9876543-2/g’ @ what it really does is replace the string UA-1234567-1 with UA-9876543-2 🙂
My personal blog
I did have to do a lots of modification in almost 600 files, and i did it using Linux SED: grep -ilr ‘UA-1234567-1’ * | xargs -i@ sed -i ‘s/UA-1234567-1/UA-9876543-2/g’ @ what it really does is replace the string UA-1234567-1 with UA-9876543-2 🙂