📜  linux 中的 crontab - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:42.746000             🧑  作者: Mango

代码示例1
crontab -e                        

10 * * * * /bin/sh test.sh    # every hour at 10"
0 */4 * * * /bin/sh test.sh   # every 4 hours at 0"
0 9-17 * * * /bin/sh test.sh  # every hour at 0" between 9 and 17
0 2 * * * /bin/sh test.sh     # daily at 2am
0 0 * * MON /bin/sh test.sh   # every Monday at 0am
0 0 * * 1-5 /bin/sh test.sh   # daily from Monday to Friday at 0am
0 0 * * 0 /bin/sh test.sh     # weekly on Sunday
0 0 1 * * /bin/sh test.sh     # monthly (1rst day at 0am)
0 0 1 */3 * /bin/sh test.sh   # every quarter (1st day at 0am)
0 0 1 1 * /bin/sh test.sh     # yearly (01/01)