How to silence a CRON and prevent it to send emails

Problem:
Every time that a CRON is running, an email is sent.  Those emails aren't always welcome.

Solution:
Simply append the following string to your command:
 > /dev/null 2>&1

i.e.
/usr/local/sbin/mycommand.sh > /dev/null 2>&1


Feel free to open a ticked if you want us to make it happen for you.
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

What are .htaccess files and how to create and edit them

.htaccess files are used to configure and provide the server with instuctions regarding the...

How to install a custom BIN on CloudLinux (with CageFS)

CageFS creates a filesystem template in /usr/share/cagefs-skeleton directory. CageFS template...

Using dig to Query a Specific DNS Server (Name Server)

There may be occasions when you wish to query a name server directly.  I usually do it when...