You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
2.0 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **at**
## 说明
**at命令** 用于在指定时间执行命令。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
(明天)来指定完成命令的时间
## 选项
```markdown
-f指定包含具体指令的任务文件
-q指定新任务的队列名称
-l显示待执行任务的列表
-d删除指定的待执行任务
-m任务执行完成后向用户发送E-mail
```
## 实例
```bash
echo "mail -s 'get the train' P@draigBrady.com < /dev/null" | at 17:45 # 在指定的时间发送邮件
/bin/ls | at 5pm+3 days # 三天后的下午5点锺执行/bin/ls
date >/root/2013.log | at 17:20 tomorrow # 明天17点钟输出时间到指定文件内
atq # 计划任务设定后在没有执行之前我们可以用atq命令来查看系统没有执行工作任务
at -c 8 # 显示已经设置的任务内容
echo "DISPLAY=$DISPLAY xmessage cooker" | at "NOW + 30 minutes" # 在给定的时间弹出对话框
```