立即运行 cron 而不更改其设置

发布于 2024-12-09 07:31:18 字数 150 浏览 0 评论 0原文

我有一个由 cron 安排的工作:每小时从服务器弹出电子邮件。

但有时我不想等待 60 分钟来检查我的电子邮件。为此,我使用一个脚本来运行与 crontab 中相同的命令。它本质上就像在计划运行之前运行 cron 一样。是否可以在特定时间运行 cron 而不更改其设置?

I have a job scheduled by cron: popping emails from server every hour.

But sometimes I don't want to wait for 60 minutes to check my emails. To do it, I use a script which run the same command I have in crontab. It is essentially as running the cron before it was scheduled tor run. Is it possible to run cron at particular time without changing it's settings?

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

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

发布评论

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

评论(2

治碍 2024-12-16 07:31:18

您应该能够使用以下内容:

at now /cron/monthly_save 

You should be able to use the following:

at now /cron/monthly_save 
夕嗳→ 2024-12-16 07:31:18

除了 cron 之外,您还可以使用工具 anacron 来实现此目的。强制执行作业变得非常简单:

anacron -f <your jobname>

You could achieve this by using the tool anacron, in addition to cron. Forcing execution of a job then becomes as easy as:

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