Hi,
I need to write a bash script that will iterate through the contents of a directory (including subdirectories) and perform the following replacements:
- replace 'foo' in any file names with 'bar'
- replace 'foo' in the contents of any files with 'bar'
So far all I've got is
find . -name '*' -exec {} \;
:-)