find / -atime +1 </tmp/fileage # put list of files starting at / into a tmp file called fileage

I believe that should be
find / -atime +1 > /tmp/fileage

Note the reverse in the redirect symbol.

Night.