Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は mac osx 10.6 を使用しています。また、minutes パラメータによって、ジョブが実行される時間を 1 時間から何分過ぎたかが決まるようです。しかし、毎正時 x 分ごとにジョブを実行するように設定するにはどうすればよいでしょうか。
いくつかの数字の配列と、「*/5」の 1 つの文字列を含む配列として分を設定しようとしました。つまり、crontab の 5 分ごとの構文に似ています。
さて、ここに解決策があります:
<key>StartCalendarInterval</key> <array> <dict> <key>Minute</key> <integer>0</integer> </dict> <dict> <key>Minute</key> <integer>55</integer> </dict> </array>
したがって、繰り返されるジョブごとにdictを設定する必要があるようです。