如何在运行linux命令之前休眠10秒?

发布于 2024-10-07 08:45:27 字数 186 浏览 4 评论 0原文

简单的问题:我想在每分钟的第 10 秒(例如下午 2:00:10)运行一次 cron 操作。 cron 操作运行curl 命令来下载网站页面。我如何运行 cron 操作来做到这一点?

当前的 crontab 设置:

* * * * * curl http://www.google.com/

Simple question: I want to run a cron operation every minute at the 10th second (for example at 2:00:10 PM). The cron operation runs a curl command to download a website page. How can I run a cron operation to do that?

Current crontab setting:

* * * * * curl http://www.google.com/

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

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

发布评论

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

评论(1

ι不睡觉的鱼゛ 2024-10-14 08:45:27
* * * * * sleep 10;curl http://www.google.com/
* * * * * sleep 10;curl http://www.google.com/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文