首页 > 代码库 > crontab不执行

crontab不执行

36 11 * * *  source /etc/profile;/bin/bash -x /tmp/zimbra_delivery_report.sh > /tmp/666 2&>1


这种是不可以的,即使加了source /etc/profile; 也是crontab中执行不成功

原因是:

> /tmp/666 2&>1


解决方法:

改成:

> /tmp/666

或者

> /dev/null 2&>1

crontab不执行