Hello, I am trying to use a cron entry to clean old files out of an archive directory. I have set it up using the following command:
0,5,10,15,20,25,30,35,40,45,50,55 * * * * find /var/spool/archive -name "?f*" -mtime +1 -exec rm -f {} \;
Every 5 minutes, it checks...