Find and move command with exec

Hi all,

I am trying to find files newer than a given file and them mv them to a new location.

So I far I have:

find . ! -newer <file_name> -exec ls -l {} \;

and

find . ! -newer <file_name> -exec mv /TEMP_LOCATION {} \;

find is not liking this.

Anyone know how to modify the last command so exec can move them?

Thanks for any feedback.

jd

find . ! -newer <file_name> -exec mv {} /TEMP_LOCATION \;

brilliant thnx!