ubuntu定時任務
阿新 • • 發佈:2019-01-25
編輯定時任務檔案
vi /etc/crontab
裡面有形如
# m h dom mon dow user command 17 ** * * rootcd / && run-parts --report /etc/cron.hourly 25 6* * * roottest -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 47 6* * 7 roottest -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) 52 61 * * roottest -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
在下方加入我們任務
19 11 * * * root /home/scrapy/scrapyMovie/SM.sh
代表11:19分以root使用者,執行/home/scrapy/scrapyMovie/SM.sh命令
其中
前五個引數取值範圍:
m: 0~59 表示分
h: 1~23 表示小時
dom: 1~31 表示日
mon: 1~12 表示月份
dow: 0~6 表示星期(其中0表示星期日)
編輯完儲存退出後 重啟crontab程序
sudo service cron restart