I need to find all files containing certain text inside my project directory. This includes sub-directories.
I've managed to find all the files:
find . -type f -exec grep -H 'Rename' {} \;
Now I need to replace the keyword "Rename" with "XYZ" leaving the rest of text in each file intact.
Ideas?
