We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
参考: 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
更多详细,请见下图
The text was updated successfully, but these errors were encountered:
No branches or pull requests
格式 (共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
更多详细,请见下图
The text was updated successfully, but these errors were encountered: