# 11. 在4月份的周一到周三的上午11点执行脚本 0 11 1-31 4 1-3 /path/to/script.sh # 12. 每天早上7点到上午11点且每2小时执行一次 0 7-11/2 * * * /path/to/script.sh # 13. 每天6点执行脚本 0 6 * * * /path/to/script.sh # 14. 每周六凌晨4点执行 0 4 * * 6 /path/to/script.sh # 15. 每周六凌晨4点05执行 5 4 * * 6 /path/to/script.sh # 16. 每天8:40执行 40 8 * * * /path/to/script.sh # 17. 在每天10:31且每隔2小时执行一次 31 10-22/2 * * * /path/to/script.sh # 18. 每周一到周五2:00执行 0 2 * * 1-5 /path/to/script.sh # 19. 每周一到周五8:00和9:00执行 0 8 * * 1-5 /path/to/script.sh 0 9 * * 1-5 /path/to/script.sh # 20. 每天10:00,16:00执行 0 10 * * * /path/to/script.sh 0 16 * * * /path/to/script.sh