crontab

http://blog.csdn.net/luojunjing/archive/2005/02/24/300428.aspx

http://blog.csdn.net/sipsir/archive/2009/03/08/3973713.aspx

crontab命令用于设置周期性被执行命令。

usage:  crontab [-u user] file
        crontab [-u user] { -e | -l | -r }
                (default operation is replace, per 1003.2)
        -e      (edit user's crontab)
        -l      (list user's crontab)
        -r      (delete user's crontab)
        -i      (prompt before deleting user's crontab)

----------------------------------------------------------------------

我一般是用vim filename.cron

crontabfilename.cron

crontab-l

下面这句应该不用添加,我测试的时候没重启亦正常运行。

/etc/init.d/cronrestart

环境变量:

如果出问题,系统会给你邮件/var/mail/username

1、crontab的执行者,导致权限、环境变量的不同

2、环境变量,最好在脚本打印出来看看有没有,没有则导入

关于环境变量可以参考这个:

http://xserver.iteye.com/admin/blogs/736580

----------------------------------------------------------------------

m   h   dom  mon  dow   command
具体意义表示:
分钟 小时 日期  月份  星期 命令
  时程表的格式如下 :
  f1 f2 f3 f4 f5 program
  其中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程式。
 
  当 f1 为 * 时表示每分钟都要执行 program,f2 为 * 时表示每小时都要执行程式,其余类推
 
  当 f1 为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要执行,f2 为 a-b 时表示从第 a 到第 b 小时都要执行,其余类推
 
  当 f1 为 */n 时表示每 n 分钟个时间间隔执行一次,f2 为 */n 表示每 n 小时个时间间隔执行一次,其余类推
 
  当 f1 为 a, b, c,... 时表示第 a, b, c,... 分钟要执行,f2 为 a, b, c,... 时表示第 a, b, c...个小时要执行,其余类推
  使用者也可以将所有的设定先存放在档案 file 中,用 crontab file 的方式来设定时程表。

相关推荐