Joe Bob wrote:
>
> Follow up:
>
> Problem solved.
>
> I realized that
> 5 * * * * command
> means that it will run at 5 after the hour, not every 5 min!
> Doh!
>
> Got it working now.
>
Well I missed that one, and I should have known better!
> One more question:
> Any way to turn off the emails the Cron Daemon sends me every
> time a cron job runs?
>
Redirect the output to /dev/null like so:
5 * * * * command > /dev/null (if you still want to see error messages)
or
5 * * * * command > /dev/null 2>&1 (if you don't want to see any messages at all)
--
Neal