linux中一次性计划任务服务at命令

2022/4/7 7:23:52

本文主要是介绍linux中一次性计划任务服务at命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

1、创建计划任务服务

[root@centos7pc1 test2]# ls
[root@centos7pc1 test2]# date
Wed Apr  6 17:16:12 CST 2022
[root@centos7pc1 test2]# at now+2 min   ## 设置任务时间, 2分钟后
at> touch a.txt          ## 设置执行的命令
at> <EOT>                ## ctrl + D
job 11 at Wed Apr  6 17:18:00 2022

 

 

2、查看任务

[root@centos7pc1 test2]# at -l
11      Wed Apr  6 17:18:00 2022 a root

 

3、查看执行结果

[root@centos7pc1 test2]# ls
a.txt
[root@centos7pc1 test2]# date
Wed Apr  6 17:18:33 CST 2022

 

4、删除任务

[root@centos7pc1 test2]# at -l
[root@centos7pc1 test2]# at now+2 hours    ## 创建一次性计划任务服务
at> touch b.txt
at> <EOT>
job 12 at Wed Apr  6 19:19:00 2022
[root@centos7pc1 test2]# at -l             ## 查看
12      Wed Apr  6 19:19:00 2022 a root
[root@centos7pc1 test2]# atrm 12           ## 删除一次性计划任务服务
[root@centos7pc1 test2]# at -l

 



这篇关于linux中一次性计划任务服务at命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程