SHELL=/bin/sh
# mail any output to `satan' no matter whose crontab this is
MAILTO=satan
# Run the 'atrun' program every 10 minutes
# This runs anything that's due to run from 'at'. See man 'at' or 'atrun'.
0,10,20,30,40,50 * * * *	/usr/lib/atrun
# This touches a filename in the temp directory so that you can see cron is
# working if the timestamp is current. Comment it out if it bugs you. :^)
* * * * *       touch /tmp/cron_running
