在 launchd 中使用 startCalendarInterval 每 x 分钟运行一次作业(就像在 cron 中使用步骤值“*/x”)?

发布于 2024-08-18 06:52:56 字数 148 浏览 5 评论 0原文

我使用的是 mac osx 10.6 - 似乎分钟参数决定了作业运行的时间过了多少分钟。但是如何设置一个作业每过 x 分钟运行一次。

我尝试将分钟设置为一组包含多个数字的数组和一个包含一个字符串的数组,该字符串为“*/5”,即类似于 crontab 的每五分钟语法。

I'm using mac osx 10.6 - and it seems that the minutes parameter determines how many minutes past the hour that the job runs. But how do you set up a job to run ever x minutes past the hour.

I've tried setting up minutes as an array of several numbers and an array with one string which is "*/5" i.e. similar to every five minutes syntax for crontab.

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

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

发布评论

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

评论(1

无敌元气妹 2024-08-25 06:52:56

好吧,这是一个解决方案:

    <key>StartCalendarInterval</key>
<array>
    <dict>
        <key>Minute</key>
        <integer>0</integer>
    </dict>
    <dict>
        <key>Minute</key>
        <integer>55</integer>
    </dict>
</array>

所以看来您需要为每个重复的工作设置一个字典。

ok well here's a solution:

    <key>StartCalendarInterval</key>
<array>
    <dict>
        <key>Minute</key>
        <integer>0</integer>
    </dict>
    <dict>
        <key>Minute</key>
        <integer>55</integer>
    </dict>
</array>

So it seems you need to set up a dict for each repeated job.

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