To stop cron from sending email alerts when a cronjob runs, just append this.. &> /dev/null For example.. 0 * * * * /usr/bin/local/somescript &> /dev/null
Back