SHELL=/bin/bash MAIL=election PATH=/opt/java/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/election/bin # Run at 8:00am, every day 0 8 * * * /home/election/bin/nightly.sh 2>&1 # Update again during the day: Noon, 5pm, 8pm 0 12,17,20 * * * /home/election/bin/midday.sh 2>&1 # Do a database backup at 4pm 0 16 * * * /home/election/bin/backup.sh 2>&1 # Send the email update to subscribers at 8:15am 15 8 * * * /home/election/bin/email.sh 2>&1 # Dump the polls into a .csv file for Sam: 6am, 6pm 0 6,18 * * * /home/election/private/runner.sh 2>&1