`计划任务`有`crontab`和`at`
大家对`crontab`可能比较熟悉
`at`也是一种计划任务,它是`一次性`的任务
比如我们设置几点几分执行一次任务,就可以用`at`
安装
`yum install -y at`
安装成功后输入
`date`查看当前的时间
```
[root@web_test ~]# date
Mon May 31 19:42:03 CST 2021
[root@web_test ~]# at 19:43
at> echo "hello the world" >> /tmp/1.txt
```
然后按`ctrl+d`退出计划任务
可以`atq`查看任务
如何删除任务
`atq`查看所有的任务
然后输入`atrm 任务id`即可
例如
```
[root@web_test ~]# atq
2 Mon May 31 19:46:00 2021 a root
[root@web_test ~]# atrm 2
[root@web_test ~]# atq
```