直接编写的 /etc/crontab 0 5 * * * /bin/bash /root/test.sh > /dev/null 2>&1 检查未生效,经查,如果直接编写文件,需要加上执行用户才可以。如下: 0 5 * * * root /bin/bash /root/test.sh > /dev/null 2>&1
推荐直接 crontab -e 编写任务 0 5 * * * /bin/bash /root/test.sh > /dev/null 2>&1