mac系统上添加定时任务

mac系统上的定时任务用launchctl来管理

先写要执行的脚本run.sh:

#!/bin/bash
echo `date` > $HOME/test_result.log

再写调度任务的plist文件task.plist:






Label
com.xyz.test


Program
/Users/xyz/test.sh


ProgramArguments

/Users/xyz/test.sh



StartCalendarInterval


Minute
10

Hour
17




StandardInPath
/Users/xyz/test-in.log


StandardOutPath
/Users/xyz/test-out.log


StandardErrorPath
/Users/xyz/test-err.log




然后再添加到执行列表中


launchctl load task.plist

就可以了。

注意一点:系统在自动运行shell脚本时是不会加载任何环境变量的,所以可能出现自己手工运行脚本正常,但是在调度任务中出错。这种情况需要导入环境变量来解决,如果不知道需要导入哪些环境变量,最简单的方法是直接导入所有环境变量的配置文件,如果使用的shell是bash,可以在运行脚本中加入如下一句:

source ~/.bashrc

如果执行任务后在错误日志里出现operation not permitted,把bash添加到full disk access中,打开Mac系统中的System Preference -> Full Disk Access,另打开一个新的finder window,点击go,输入/bin/bash,把bash拖入到Full Disk Access列表中

plist文件的详细内容参考:

http://blog.csdn.net/lgt633744/article/details/45932035

http://www.tuicool.com/articles/beeUNvq

你可能感兴趣的:(mac系统上添加定时任务)