I know how to change multiple files within one directory but not subdirectories. In the following case the script would be renaming the files named
index.fld to
index.fld.bad. It might help you.
You can type the following in the command line or put it in an executable text file:
Code:
for k in $(ls directory/index.fld); do mv $k $k.bad; done;
If you could add a for statement that would ad a
/* each time the script was completed you could make it start from
directory/index.fld and go to
directory/*/*/index.fld... as far as you needed.