随机 cron 作业
我需要一个 script1 每天随机执行 script2 。 我希望每天在随机时间内执行 script2 大约 30 次。 script1 将在 cron 作业中设置。 有人可以帮助如何实现它吗? PS我不是程序员,所以需要一些准备好的东西,请
I need a script1 that will execute script2 at random times a day.
I'm looking to execute the script2 around 30 times a day within random times.
script1 will be set in the cron job.
Could someone please help how to make it happen?
PS I am not a programmer, so would need something ready to go, please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Seth 的解决方案当然有效,但每天的执行次数会有所不同。如果您确实想要 30 次执行,不多也不少,我建议使用类似 cron 条目
和脚本
gen-executions.sh
:这会生成 30 次
/path/to/ 执行script.sh
在一天中的随机时间使用 at。Seth's solution certainly works, but the number of executions per day will differ. If you want definitely 30 executions, not more and not less, I propose using a cron entry like
and a script
gen-executions.sh
:This generates exactly 30 executions of
/path/to/script.sh
at random times of the day using at.