centos7计划任务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7计划任务相关的知识,希望对你有一定的参考价值。
一、一次性计划任务:
- 安装:
yum -y install at
- 启动服务:
systemctl start atd
- 添加:
at 20:00 echo ‘hello‘ # 退出按ctl+d
- 查看(列表):
at -l
- 查看(详情):
at -c 4
- 删除:
at -d 4
二、周期性计划任务:
- 添加:
crontab -e
- 查看:
crontab -l
- 删除:
crontab -r
以上是关于centos7计划任务的主要内容,如果未能解决你的问题,请参考以下文章