antiantantiant.blog.chinaunix.net
antiant
全部博文(32)
线程间通信(9)
进程间通信(0)
网络通信(1)
2010年(32)
大鬼不动
zzbok
36853
分类: LINUX
2010-07-01 23:49:37
ant@ant:~$ crontab --help crontab: invalid option -- '-' crontab: usage error: unrecognized option 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) ant@ant:~$
ant@ant:~$ cat /etc/crontab
* 星号表示任何时候 , 逗号表示不连续的时间段 - 中横杠表示连续的时间段 /n 表示每隔n个单位间隔
01 * * * * ping -c 3 google.com 每小时的01分执行一次ping命令 每小时的01和03分执行一次ping命令 01,03 * * * * ping -c 3 google.com 1点到8点每小时的10分执行一次ping命令 10 01-08 * * * * ping -c 3 google.com 每隔7分钟执行一次ping命令 /7 * * * * * ping -c 3 google.com
上一篇:Ubuntu 实用软件列表
下一篇:Ubuntu 常用命令
登录 注册