1 | at
|
2 | ===
|
3 |
|
4 | 在指定时间执行一个任务
|
5 |
|
6 | ## 补充说明
|
7 |
|
8 | **at命令** 用于在指定时间执行命令。at允许使用一套相当复杂的指定时间的方法。它能够接受在当天的hh:mm(小时:分钟)式的时间指定。假如该时间已过去,那么就放在第二天执行。当然也能够使用midnight(深夜),noon(中午),teatime(饮茶时间,一般是下午4点)等比较模糊的 词语来指定时间。用户还能够采用12小时计时制,即在时间后面加上AM(上午)或PM(下午)来说明是上午还是下午。 也能够指定命令执行的具体日期,指定格式为month day(月 日)或mm/dd/yy(月/日/年)或dd.mm.yy(日.月.年)。指定的日期必须跟在指定时间的后面。
|
9 |
|
10 | 上面介绍的都是绝对计时法,其实还能够使用相对计时法,这对于安排不久就要执行的命令是很有好处的。指定格式为:`now + count time-units`,now就是当前时间,time-units是时间单位,这里能够是minutes(分钟)、hours(小时)、days(天)、weeks(星期)。count是时间的数量,究竟是几天,还是几小时,等等。 更有一种计时方法就是直接使用today(今天)、tomorrow(明天)来指定完成命令的时间。
|
11 |
|
12 | ### 语法
|
13 |
|
14 | ```shell
|
15 | at [-V] [-q 队列] [-f 文件] [-mldbv] 时间 at -c 作业 [作业...]
|
16 | ```
|
17 |
|
18 | ### 选项
|
19 |
|
20 | ```shell
|
21 | -f:指定包含具体指令的任务文件;
|
22 | -q:指定新任务的队列名称;
|
23 | -l:显示待执行任务的列表;
|
24 | -d:删除指定的待执行任务;
|
25 | -m:任务执行完成后向用户发送E-mail。
|
26 | ```
|
27 |
|
28 | ### 参数
|
29 |
|
30 | 日期时间:指定任务执行的日期时间。
|
31 |
|
32 | ### 实例
|
33 |
|
34 | 三天后的下午 5 点锺执行`/bin/ls`:
|
35 |
|
36 | ```shell
|
37 | [root@localhost ~]# at 5pm+3 days
|
38 | at> /bin/ls
|
39 | at> <EOT>
|
40 | job 7 at 2013-01-08 17:00
|
41 | ```
|
42 |
|
43 | 明天17点钟,输出时间到指定文件内:
|
44 |
|
45 | ```shell
|
46 | [root@localhost ~]# at 17:20 tomorrow
|
47 | at> date >/root/2013.log
|
48 | at> <EOT>
|
49 | job 8 at 2013-01-06 17:20
|
50 | ```
|
51 |
|
52 | 计划任务设定后,在没有执行之前我们可以用atq命令来查看系统没有执行工作任务:
|
53 |
|
54 | ```shell
|
55 | [root@localhost ~]# atq
|
56 | 8 2013-01-06 17:20 a root
|
57 | 7 2013-01-08 17:00 a root
|
58 | ```
|
59 |
|
60 | 删除已经设置的任务:
|
61 |
|
62 | ```shell
|
63 | [root@localhost ~]# atq
|
64 | 8 2013-01-06 17:20 a root
|
65 | 7 2013-01-08 17:00 a root
|
66 |
|
67 | [root@localhost ~]# atrm 7
|
68 | [root@localhost ~]# atq
|
69 | 8 2013-01-06 17:20 a root
|
70 | ```
|
71 |
|
72 | 显示已经设置的任务内容:
|
73 |
|
74 | ```shell
|
75 | [root@localhost ~]# at -c 8
|
76 | #!/bin/sh
|
77 | # atrun uid=0 gid=0
|
78 | # mail root 0
|
79 | umask 22此处省略n个字符
|
80 | date >/root/2013.log
|
81 | ```
|
82 |
|
83 |
|
84 |
|