BAE3.0定时任务设置

来源:互联网 发布:造梦西游刷点卷软件 编辑:程序博客网 时间:2024/04/30 11:29
  1. *  *  *  *  *  command   
  2. 分 时 日 月 周 命令   
  3. 1列表示分钟159 每分钟用*或者 */1表示   
  4. 2列表示小时1230表示0点)   
  5. 3列表示日期131  
  6. 4列表示月份112  
  7. 5列标识号星期060表示星期天)   
  8. 6列要运行的命令   
  9. crontab文件的一些例子:   
  10. 30 21 * * * /usr/local/etc/rc.d/lighttpd restart   
  11. 上面的例子表示每晚的21:30重启apache。   
  12. 45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart   
  13. 上面的例子表示每月11022日的4 : 45重启apache。   
  14. 10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart   
  15. 上面的例子表示每周六、周日的1 : 10重启apache。   
  16. 0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart   
  17. 上面的例子表示在每天18 : 0023 : 00之间每隔30分钟重启apache。   
  18. 0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart   
  19. 上面的例子表示每星期六的11 : 00 pm重启apache。   
  20. * */1 * * * /usr/local/etc/rc.d/lighttpd restart   
  21. 每一小时重启apache   
  22. 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart   
  23. 晚上11点到早上7点之间,每隔一小时重启apache   
  24. 0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart   
  25. 每月的4号与每周一到周三的11点重启apache   
  26. 0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart   
  27. 一月一号的4点重启apache  
0 0
原创粉丝点击