mac使用launchctl定时运行程序

mac使用launchctl定时运行程序

转载自 http://www.2cto.com/os/201305/215350.html

 
在linux下可以用crontab来定时执行任务,在mac下可以用launchctl来定时执行任务 
 
我们使用launchctl来做一个定时执行任务的例子 
 
首先做一个可执行的脚本,脚本名字叫做: 
run123.sh,脚本的功能就是在/Users/alecyan/Downloads/目录下建一个文件,脚本要改成可执行的权限 
chmod 777 run123.sh 
脚本代码如下: 
Java代码  
cd /Users/alecyan/Downloads/  
touch abcabc123.txt  
 
然后进入到~/Library/LaunchAgents下建一个plist文件,这个就是糸统执行任务时要使用的文件 
文件名叫com.alecyan.testcron.plist 
文件内容如下: 
 
Java代码  
<?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.alecyan.testcron</string>  
  <key>ProgramArguments</key>  
  <array>  
    <string>/Users/alecyan/Downloads/run123.sh</string>  
  </array>  
  <key>StartCalendarInterval</key>  
  <dict>  
        <key>Minute</key>  
        <integer>4</integer>  
        <key>Hour</key>  
        <integer>13</integer>  
  </dict>  
  <key>StandardOutPath</key>  
<string>/Users/alecyan/Downloads/abc.log</string>  
<key>StandardErrorPath</key>  
<string>/Users/alecyan/Downloads/abcerror.log</string>  
</dict>  
</plist>  
 
简单的对这里边的内容说明一下,label这里就是给这个任务名个名字,这里一般取plist的文件名,这个名字不能和其它的plist重复。 run123.sh就是我们要执行的脚本,StartCalendarInterval里边的参数是说每一天13点4分的时候执行一下脚本 
 
然后就可以用下面的几个命令进行操作我们做好的任务了 
Java代码  
launchctl load com.alecyan.testcron.plist  
launchctl unload com.alecyan.testcron.plist  
launchctl start com.alecyan.testcron.plist  
launchctl stop com.alecyan.testcron.plist  
launchctl list  
 
要加载我们做好的plist文件,就是用上面的第一个命令load然,这个时候糸统就会在每天的13点4分执行我们的脚本 
 
如果想去掉我们的定时任务就可以用unload命令 
 
如果一个任务今天的13点4分执行过了,然后你改了,com.alecyan.testcron.plist里面的时间,比如说改到14点4分执行,必须unload之后再重新load一下,不然当天不会再执行这个命令 
 
start可以测试任务,这个是立即执行,不管时间到了没有 
stop可以停止任务 
 
ok一个简单的定时任务就可以用了 
 
深入的再说一下,其实,/Library/LaunchAgents这样的目录在mac下一般有三个,我们上面说的是当前用户的目录下的,还有 两个一个在/Library/LaunchAgents另一个在/System/Library/LaunchAgents/ 如果是不管哪一个用户都要定时执行的话,就要放在 
/Library/LaunchAgents这个下面

mac

相关推荐