如何创建cron命令

发布于 2024-09-25 05:22:59 字数 59 浏览 9 评论 0原文

我如何从 cron 调用像 stackoverflow.com 这样的 url,而不从页面获取返回数据?

how can i call some url like stackoverflow.com from cron without getting return data from page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪花飘飘的天空 2024-10-02 05:22:59

cron 的格式如下:

# Minute   Hour   Day of Month       Month          Day of Week        Command    
# (0-59)  (0-23)     (1-31)    (1-12 or Jan-Dec)  (0-6 or Sun-Sat)                

例如,每天上午 9 点运行并连接到站点的 cron 看起来像这样:

0 9 * * * wget --spider http://www.stackoverflow.com > /dev/null 2>&1

运行 crontab -e 编辑 crontab,将这一行添加到其中并保存。

The format for cron is as follows:

# Minute   Hour   Day of Month       Month          Day of Week        Command    
# (0-59)  (0-23)     (1-31)    (1-12 or Jan-Dec)  (0-6 or Sun-Sat)                

For example, a cron to run at 9am every day and connect to a site would look like this:

0 9 * * * wget --spider http://www.stackoverflow.com > /dev/null 2>&1

Run crontab -e to edit the crontab, add this line to it and save.

掀纱窥君容 2024-10-02 05:22:59

使用这个:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文