junxnone / linux

Linux wiki
https://junxnone.github.io/linux/
0 stars 0 forks source link

Tools TaskSchedule crontab #71

Open junxnone opened 5 years ago

junxnone commented 5 years ago

Task 管理工具 crontab

Brief

Usecase

# crontab -e
# m h  dom mon dow   command
0 0 * * 1  /home/xxxx/restart_ssserver.sh

每周一零时执行脚本 restart_ssserver.sh

Time Format

{minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script} 
o minute: 区间为 0 – 59 
o hour: 区间为0 – 23 
o day-of-month: 区间为0 – 31 
o month: 区间为1 – 12. 1 是1月. 12是12月. 
o Day-of-week: 区间为0 – 7. 周日可以是0或7.