It's been a while since i used bash:/
I wish to find all .docx files, and append them a string. This is my current code, witch has a little bug:find -name '*.docx -execdir mv {} {}$string \;
Files are renamed, but string is added like this filename.docx_string and not like that filename_string.docx.
Any ideas? Thank you:)