#EMBOSS Explorer generates temporary output files every time an application is
#used.  Depending on the tasks being performed, these output files can consume
#space fairly quickly.
#The following example runs every
#morning at 0400 and removes all output files that have not been accessed in
#the last 24 hours:
0 4 * * * find /srv/www/htdocs/emboss/output -type d -mindepth 1 -maxdepth 1 -atime 1 -exec rm -rf {} \;
