#!/bin/ksh ############################################################# # Lets clean up some stuff older than 14 days shall we? # - Doug Burton # # Cron line to use: # # Lets clean up some stuff older than 14 days shall we? # 0 0 * * * /usr/local/bin/cleanup # # http://home.tampabay.rr.com/batcave/ ############################################################# for DIR in /tmp /var/tmp /var/dt/tmp do find $DIR -type f -atime +14 -exec rm {} \; done