如何创建cron命令
我如何从 cron 调用像 stackoverflow.com 这样的 url,而不从页面获取返回数据?
how can i call some url like stackoverflow.com from cron without getting return data from page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
cron 的格式如下:
例如,每天上午 9 点运行并连接到站点的 cron 看起来像这样:
运行
crontab -e
编辑 crontab,将这一行添加到其中并保存。The format for cron is as follows:
For example, a cron to run at 9am every day and connect to a site would look like this:
Run
crontab -e
to edit the crontab, add this line to it and save.使用这个:
wget --spider http://www.stackoverflow.com > /dev/null 2>&1
此命令调用 url,但不下载输出并将 stderr 和 stdout 重定向到 /dev/null
use this:
wget --spider http://www.stackoverflow.com > /dev/null 2>&1
This command calls the url but doesnt download the output and redirect stderr and stdout to /dev/null