Open maboloshi opened 4 years ago
参考: mac下crontab执行定时脚本
格式 (共6列): f1 f2 f3 f4 f5 program 分 时 日 月 周 执行程序
第1列: 分钟1~59 第2列: 小时1~23(0表示子夜) 第3列: 日1~31 第4列: 月1~12 第5列: 星期0~6(0表示星期天) 第6列: 要运行的命令
每10分钟,curl访问一次该地址 */10 * * * * curlhttp://localhost/test.php
*/10 * * * * curlhttp://localhost/test.php
每周六、周日的1 : 10重启apache 10 1 * * 6,0 /usr/local/apache/bin/apachectl restart
10 1 * * 6,0 /usr/local/apache/bin/apachectl restart
更多详细,请见下图
格式 (共6列): f1 f2 f3 f4 f5 program 分 时 日 月 周 执行程序
第1列: 分钟1~59 第2列: 小时1~23(0表示子夜) 第3列: 日1~31 第4列: 月1~12 第5列: 星期0~6(0表示星期天) 第6列: 要运行的命令
每10分钟,curl访问一次该地址
*/10 * * * * curlhttp://localhost/test.php
每周六、周日的1 : 10重启apache
10 1 * * 6,0 /usr/local/apache/bin/apachectl restart
更多详细,请见下图