I would like to disable crontab mail notification for one of my task...
I run this task every minute, that means 1440 mail per day :S
Can someone tell me if this is possible and how can I do this?
|
I would like to disable crontab mail notification for one of my task... I run this task every minute, that means 1440 mail per day :S Can someone tell me if this is possible and how can I do this? |
|||
|
|
|
You just have to make sure that your task does not produce any output. If it is a single command add ">/dev/null 2>&1" (without the quotes) to your command. |
|||||
|