1

我正在尝试使用 launchd 每 10 分钟运行一次 python 脚本。使用 cron 这很容易,但我已经尝试了几个小时来了解如何操作 launchd,但我没有成功。我正在使用位于/Users/turtle/bin/. 这是我的启动文件 ( com.foobar) 的样子:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <dict>
        <key>Label</key>
        <string>com.foobar</string>
        <key>ProgramArguments</key>
        <array>
            <string>/Users/turtle/bin/python</string>
            <string>/Users/turtle/code/baz.py</string>
        </array>
        <key>StartCalendarInterval</key>
        <dict>
            <key>Minute</key>
            <integer>10</integer>
        </dict>
    </dict>
</plist>

当我运行时:

launchctl load /Library/LaunchAgents/com.foobar

我得到:

launchctl: Couldn't stat("/Library/LaunchAgents/com.foobar"): No such file or directory nothing found to load

谁能帮我?谢谢你的时间。

4

2 回答 2

1

StartCalendarInterval键为Minute:脚本在每小时的第 10 分钟运行。

您必须使用StartInterval:作业每 N秒启动一次

<key>StartInterval</key>
<integer>600</integer>
于 2012-04-22T21:51:31.560 回答
0
launchctl load -w /Library/LaunchAgents/com.foobar

那样有用吗?

于 2012-04-21T22:25:44.243 回答