DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Find & Replace Using Find + Xargs + Sed
Replace all occurances of oldstring with newstring. Obviously change wildcard as appropriate.
find . -name '*.ini' -type f -print0 | xargs -0 sed -i 's|oldstring|newstring|g'





