How can I find things created \"Jul 30 04:37\" and move them to /tmp? Something wrong:
find . -ctime \"0037043007\" -exec mv {} /tmp +
I am not sure why you are using the "exec {} +" syntax... How about this:
exec {} +
find . -ctime "0037043007" -exec mv \{} /tmp/ \;