I run this command to find and replace all occurrences of 'apple' with 'orange' in all files in root of my site
find ./ -type f -exec sed -i -e 's/apple/orange/g' {} \;
I run this command to find and replace all occurrences of 'apple' with 'orange' in all files in root of my site
find ./ -type f -exec sed -i -e 's/apple/orange/g' {} \;