Lo, on Sunday, October 21, Lance Hoffmeyer did write: > Isn't the syntax to have cron run every five and not send email to anyone > > MAILTO="" > 5 * * * * <run program>
That will run your program 5 minutes after the hour, every hour. See crontab's manpage from section 5. MAILTO="" */5 * * * * <program> Richard