I run this command to find and replace all occurrences of 'apple' with 'orange' in all files in root of my site:
find ./ -exec sed -i 's/apple/orange/g' {} \; But it doesn't go through sub directories.
What is wrong with this command?
Here are some lines of output of find ./:
./index.php ./header.php ./fpd ./fpd/font ./fpd/font/desktop.ini ./fpd/font/courier.php ./fpd/font/symbol.php
find ./and post some sample output? And the directory strucuture please. edit: thanks!