To prevent mail messages piling up from your crontab commands you add the following at the end of your crontab line:
>/dev/null 2>&1
or
&> /dev/null
To prevent mail messages piling up from your crontab commands you add the following at the end of your crontab line:
>/dev/null 2>&1
or
&> /dev/null
Everyone knows that crontab entries look like this:
* * * * * /usr/local/bin/my-script
Which will execute command “my-script” every minute.
Continue reading “Cron @reboot execute command on system start like rc.local”