crontab 与 shell 执行结果不一样2021-10-18 05:10:44crontab 与 shell 执行结果不一样 本帖最后由 fujiefujie http://www.lampchina.net/ask/MTQxMzUwMg.html于 2011-2-28 10:38 编辑 shell #!/bin/bash service httpd status &> /dev/null if [ $? -ne 0 ] then day=`date "+%F%R"` echo "service httpd is down at $day" >> /var/log/htmon.txt service httpd restart service httpd status &> /dev/null if [ $? -ne 0 ] then chkconfig --level 2345 httpd on else echo "httpd is running now..." fi fi 复制代码 crontab */1 * * * * /opt/htmon.sh 本文转自holy2009 51CTO博客,原文链接:http://blog.51cto.com/holy2010/503484 上一篇:接口管理进阶-环境变量的使用下一篇:项目中全局变量的灵活用法
shell
*/1 * * * * /opt/htmon.sh