MariaDB社区

标题: Crontab 介绍 [打印本页]

作者: admin    时间: 2007-7-20 18:05
标题: Crontab 介绍
原作者:Fenng   整理:kider

Crontab 的格式说明如下:

* 逗号(',') 指定列表值。如: "1,3,4,7,8"
* 中横线('-') 指定范围值 如 "1-6", 代表 "1,2,3,4,5,6"
* 星号 ('*') 代表所有可能的值

Linux(开源系统似乎都可以)下还有个 "/" 可以用. 在 Minute 字段上,*/15 表示每 15 分钟执行一次. 而这个特性在商业 Unix ,比如 AIX 上就没有.


  1. # Use the hash sign to prefix a comment
  2. # +---------------- minute (0 - 59)
  3. # | +------------- hour (0 - 23)
  4. # | | +---------- day of month (1 - 31)
  5. # | | | +------- month (1 - 12)
  6. # | | | | +---- day of week (0 - 7) (Sunday=0 or 7)
  7. # | | | | |
  8. # * * * * * command to be executed
复制代码

作者: kider    时间: 2007-11-16 13:53
举个例子:

想要在Crontab中加入去自动定时执行脚步:

    #crontab -e
       00 02 * * *  /root/yourscript.sh  (每天2:00AM执行)
作者: mysqlkumao    时间: 2008-3-26 09:17





欢迎光临 MariaDB社区 (http://123.56.88.72/) Powered by Discuz! X3.2