立即运行 cron 而不更改其设置
我有一个由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用以下内容:
You should be able to use the following:
除了
cron
之外,您还可以使用工具anacron
来实现此目的。强制执行作业变得非常简单:You could achieve this by using the tool
anacron
, in addition tocron
. Forcing execution of a job then becomes as easy as: