This creates a file in the same directy as 'some.file.bak'.
find /home/ -ipath "*/temp/some.file" -type f -exec cp {} {}.bak \;
How to make a copy in another name such as 'another.file' in the same directory as some.file instead of 'some.file.bak'.