Rename Multiple Files Using Find

Use the following command to recursively rename files matching a specific pattern (file* here).

find . -type f -name 'file*' -execdir mv {} {}_renamed ';'