[CentOS] Cron Mail

Thu Jun 18 04:09:51 UTC 2009
John R Pierce <pierce at hogranch.com>

Joseph L. Casale wrote:
> Is there any way to prevent mail from completed cron jobs for
> only say the hourly directory?
>   


redirect the output to /dev/null

like, after each command,    &> 1

(the &> redirects both stdout and stderr)