单一时刻执行任务:at
at命令用于在指定时刻,执行单次任务
语法
at 选项 参数
at> 执行的命令
at><EOT>
*其中<EOT>不是键盘输入,而是组合键Ctrl+D*
选项
-f:指定包含具体指令的任务文件;
-q:指定新任务的队列名称;
-l:显示待执行任务的列表;
-d:删除指定的待执行任务;
-m:任务执行完成后向用户发送E-mail。
绝对计数方法
at允许使用一套相当复杂的指定时间的方法。它能够接受在当天的hh:mm(小时:分钟)式的时间指定。假如该时间已过去,那么就放在第二天执行。
也能够使用midnight(深夜),noon(中午),teatime(饮茶时间,一般是下午4点)等比较模糊的 词语来指定时间。用户还能够采用12小时计时制,即在时间后面加上AM(上午)或PM(下午)来说明是上午还是下午。 也能够指定命令执行的具体日期,指定格式为month day(月 日)或mm/dd/yy(月/日/年)或dd.mm.yy(日.月.年)。指定的日期必须跟在指定时间的后面。
相对计数法
格式为:now + count time-units
now就是当前时间,time-units是时间单位,这里能够是minutes(分钟)、hours(小时)、days(天)、weeks(星期)。count是时间的数量,究竟是几天,还是几小时,等等。 更有一种计时方法就是直接使用today(今天)、tomorrow(明天)来指定完成命令的时间。
实例
当前一分钟后输出hello,at内容输出重定向至当前目录下的at.txt
[hx@centos8 ~]$ at now + 1 minutes
warning: commands will be executed using /bin/sh
at> echo "hello,at" > at.txt
at> <EOT>
job 7 at Tue Jun 16 10:47:00 2020
使用相对计数法 当前时间+1分钟后执行echo "hello,at" > at.txt
Ctrl+D结束输入
系统提示会在10.47执行任务
验证查看是否重定向文件以及查看文件内容
[hx@centos8 ~]$ ls
at.txt master test1 test1.txt test2 test2.txt test3 test3.txt test4 test4.txt test5 test5.txt
[hx@centos8 ~]$ cat at.txt
hello,at
查询当前任务
命令为atq
[hx@centos8 ~]$ atq
8 Tue Jun 16 11:02:00 2020 a hx
其中8代表任务编号,后面则是运行时间,对象用户是hx
删除指定用户
命令为:atrm
[hx@centos8 ~]$ at now + 5 minutes
warning: commands will be executed using /bin/sh
at> sl
at> <EOT>
job 9 at Tue Jun 16 11:08:00 2020
[hx@centos8 ~]$ atq #查询任务列表
9 Tue Jun 16 11:08:00 2020 a hx
[hx@centos8 ~]$ atrm 9 #删除任务9
[hx@centos8 ~]$ atq #再次查询
[hx@centos8 ~]$ #为空
注意事项
默认情况下,所有用户都可以使用at来调度自己任务,如果需要禁止某些用户使用,可以将该用户的用户名添加至/etc/at.deny中
以下可以参考
[root@centos8 ~]# echo "hx" >/etc/at.deny
[root@centos8 ~]# cat /etc/at.deny
hx
[root@centos8 ~]# su hx
[hx@centos8 root]$ at new 1 minutes
You do not have permission to use at.
[hx@centos8 root]$