系统管理 · 2022年02月20日 0

at命令 – 一次性定时计划任务

at命令允许指定运行脚本时间,at的守护进程atd会以后台模式运行,检查系统上的一个特殊目录来获取at命令的提交的作业。默认情况下,atd守护进程每60秒检查一次目录。有作业时会检查作业运行时间,如果与当前时间匹配,则运行此作业。 **语法格式:** at [参数] **常用参数:** | atq | 查看系统中的等待作业 | | ----- | -------------------------------------- | | -d | 删除系统中的等待作业(等效于atrm命令) | | -c | 打印任务的内容 | | -q | 使用指定的列队 | | -f | 将指定文件提交等待作业 | | -t | 以时间的形式提交运行作业 | **参考实例** 查看系统中的等待作业: ``` [root@anycode ~]# atq ``` 使用”at -d”或者”atrm”(二者同效)指定id来删除系统中的等待作业,id为”atq”命令输出的第一行顺序数字: ``` [root@anycode ~]# at -d 1 [root@anycode ~]# atrm 1 ``` 假设存在 linuxcool.sh 脚本,立即运行: ``` [root@anycode ~]# at -f linuxcool.sh now ``` 在25分钟之后运行 linuxcool.sh 脚本: ``` [root@anycode ~]# at -f linuxcool.sh now+25 min ``` 在10:11运行 linuxcool.sh 脚本: ``` [root@anycode ~]# at -f linuxcool.sh 10:11 ``` 在2019年7月27日运行 linuxcool.sh 脚本: ``` [root@anycode ~]# at -f linuxcool.sh 07/27/2019 ```