I have a problem with the /tmp file filing up. Everytime a user launches
this app it saves the profile in the tmp directory.
I would like to run a cron that will delete files older than 30 days, BUT
I have seen
find /tmp -type f -mtime +30 -exec rm -f {} ;
Laura