在linux下能夠用crontab來定時執行任務,在MAC下能夠用launchctl來定時執行任務。 html
咱們使用launchctl來作一個定時執行任務的例子。 linux
首先作一個可執行的腳本,腳本名字叫作:AutoMakeLog.sh,腳本的功能就是在/Users/jackin/Downloads/目錄下建一個日誌文件。 shell
Shell文件/Users/jackin/AutoMakeLog.sh: app
cd /Users/jackin/Downloads/ LOG=`date +"%Y-%m-%d %H:%M:%S"` LOGFILE=`date +"date-log-%Y%m%d.log"` echo $LOG > $LOGFILE
腳本要改爲可執行的權限 測試
chmod 777 AutoMakeLog.sh
而後進入到~/Library/LaunchAgents下建一個plist文件,這個就是糸統執行任務時要使用的文件 日誌
文件名叫com.jackin.launchctl.plist,文件內容以下: code
<?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.jackin.launchctl.plist</string> <key>ProgramArguments</key> <array> <string>/Users/jackin/AutoMakeLog.sh</string> </array> <key>StartCalendarInterval</key> <dict> <key>Minute</key> <integer>4</integer> <key>Hour</key> <integer>13</integer> </dict> <key>StandardOutPath</key> <string>/var/log/AutoMakeLog.log</string> <key>StandardErrorPath</key> <string>/var/log/AutoMakeLog.err</string> </dict> </plist>
簡單的對這裏邊的內容說明一下,label這裏就是給這個任務名個名字,這裏通常取plist的文件名,這個名字不能和其它的plist重複。AutoMakeLog.sh就是咱們要執行的腳本,StartCalendarInterval裏邊的參數是說每一天13點4分的時候執行一下腳本。 xml
而後就能夠用下面的幾個命令進行操做咱們作好的任務了。 htm
launchctl load com.jackin.launchctl.plist launchctl unload com.jackin.launchctl.plist launchctl start com.jackin.launchctl.plist launchctl stop com.jackin.launchctl.plist launchctl list
要加載咱們作好的plist文件,就是用上面的第一個命令load然,這個時候糸統就會在天天的13點4分執行咱們的腳本。若是想去掉咱們的定時任務就能夠用unload命令。 crontab
若是一個任務今天的13點4分執行過了,而後你改了,com.jackin.launchctl.plist裏面的時間,好比說改到14點4分執行,必須unload以後再從新load一下,否則當天不會再執行這個命令。
start能夠測試任務,這個是當即執行,無論時間到了沒有
stop能夠中止任務
深刻的再說一下,其實,/Library/LaunchAgents這樣的目錄在MAC下通常有三個,咱們上面說的是當前用戶的目錄下的,還有兩個一個在/Library/LaunchAgents另外一個在/System/Library/LaunchAgents/。若是是無論哪個用戶都要定時執行的話,就要放在 /Library/LaunchAgents這個下面 。
launchd.plist 文件的詳細說明https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man5/launchd.plist.5.html