常都是一些Shell 脚本、命令、及perl 命令或者perl脚本等,当然也有一些应用.Cron按用户和按时间段可以将多个任进行分类保存.通常/etc/crontab 保存是一个系统的全局的配置文件.查看这个配置文件,我们可以看出,其中多一个参数 run-parts后面加上命令保存的路径.每个用户单独创建的配置文件一般保存在/var/spool/cron/crontab下,这个目录下会为每个用户建一个以用户名字命名的配置文件. 4)配置命令 crontab –l 列出当前用户 crontab –e 编辑一个新的文件 [root@windriver-machine ~]# cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/ # run-parts 01 * * * * root run-parts /etc/cron.hourly 02 4 * * * root run-parts /etc/cron.daily 22 4 * * 0 root run-parts /etc/cron.weekly 42 4 1 * * root run-parts /etc/cron.monthly [root@windriver-machine ~]# crontab -l no crontab for root [root@windriver-machine ~]# crontab -e no crontab for root - using an empty one crontab: installing new crontab [root@windriver-machine ~]# crontab -l */2 * * * * /bin/echo `date` >/dev/tty1 [root@windriver-machine ~]# tty /dev/pts/0 [root@windriver-machine ~]# crontab -e crontab: installing new crontab [root@windriver-machine ~]# crontab -e crontab: installing new crontab [root@windriver-machine ~]# crontab -l */1 * * * * /bin/echo `date` >/dev/pts/0 [root@windriver-machine ~]# date -u Sun Aug 7 16:44:52 UTC 2011 [root@windriver-machine ~]# Mon Aug 8 00:45:01 CST 2011 [root@windriver-machine ~]# Mon Aug 8 00:46:01 CST 2011 Mon Aug 8 00:47:01 CST 2011 Mon Aug 8 00:48:01 CST 2011 Mon Aug 8 00:49:01 CST 2011 Mon Aug 8 00:50:01 CST 2011 Mon Aug 8 00:51:01 CST 2011 [root@windriver-machine ~]# crontab -e crontab: no changes made to crontab [root@windriver-machine ~]# crontab -r [root@windriver-machine ~]# crontab -e no crontab for root - using an empty one crontab: no changes made to crontab [root@windriver-machine ~]# crontab -l no crontab for root [root@windriver-machine ~]# at 是Linux下部署一次性任务工具包. 【1】安装at. at是有一个第三方开发包,缺省LINUX都安装好了. 【2】启动at,通过命令查看at服务状态. 【3】配置at一次性任务. at 的基本格式是 at 指定时间 后接指定任务. 每创建一个at任务,系统都会在/var/spool/at下创建一个任务名.当这个任务被执行后,它就会被删除. 当然在执行之前也可以使用命令atrm来删除,使用atq来查看. 同cron一样,at 也可控制用户使用/etc/at.allow 和/etc/at.deny.也可以使用一些选项如-m –q -l.还可以使用另外一个命令batch.这是一个特殊命令,只有当系统负载下降到0.8时才会执行的.
|