#!/bin/csh -f # # announce ourselves... # /bin/echo "-----------------------------------------------------------------" /bin/echo "nightly_cleanup.sh: starting at" `/bin/date`"..." /bin/echo "-----------------------------------------------------------------" # # purge tmp files older then 7 days # /bin/find /tmp -mtime +7 -ls -exec rm {} \; # # purge acif1 files older then 7 days # /bin/find /arsacif/acif1 -mtime +7 -ls -exec rm {} \; # # purge apache cache files older then 7 days # #/bin/find /var/html/htdocs/cache -mtime +7 -ls -exec rm {} \; # # purge /var/preserve files older then 7 days # /bin/find /var/preserve -mtime +7 -ls -exec rm {} \; # # exit # exit