find ./ -type f -exec sed -i -e 's/apple/orange/g' {} \;
This changes all ocurrences of apple to orange in the folder and subfolders from "."
find ./ -type f -exec sed -i -e 's/apple/orange/g' {} \;
This changes all ocurrences of apple to orange in the folder and subfolders from "."