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
时间: 2024-10-10 15:40:13
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