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 的方式来设定时程表。
相关推荐
liguojia 2020-10-20
木子李CSDN 2020-06-05
kernelstudy 2020-05-21
playlinuxxx 2020-05-08
IsanaYashiro 2020-04-22
fenxinzi 2020-04-07
山兔与孟婆 2020-03-28
stoneechogx 2020-02-17
onlykg 2020-02-15
大老张学编程 2020-02-09
linuxisperfect 2020-01-09
liuyh 2019-12-22
蜀川居 2013-08-05
happywxp 2013-03-27
chenzelin 2013-03-31
NeverAgain 2019-12-13
mieleizhi0 2019-12-05
ningningmingming 2019-11-13
playlinuxxx 2013-09-02