10月16日,第6课
4.4计划任务列表
第五章用户与文件权限
4.4计划任务
at,一次性计划任务(Crtl + d,退出计划任务输入)
[root@csdk ~]# at 19:08
warning: commands will be executed using /bin/sh
at> reboot
at>
job 1 at Fri Oct 16 19:08:00 2020
[root@csdk ~]# at -l
1 Fri Oct 16 19:08:00 2020 a root
at -c 任务编号,查看任务详细信息
at -r 任务编号,删除计划
crond,周期性计划任务
crond,服务名称
crontab,工具名称
crontab -e,配置当前用户的
crontab -e -u,配置其它用户的
crontab -l,查看当前计划任务
格式: 分钟 小时 日期 月份 星期 ------ 命令
Fri Oct 16 07:18:32 EDT 2020
25 07 16 10 * reboot,日期和星期不能同时写,毕竟每年的这个日期不是同一个星期时间
上面代表每年的10月16日,07:25分,执行reboot命令
30 03 * * 7 reboot,代表每周星期天03:30分执行reboot命令
10 2,5,10 * * * reboot,代表每天的10:10,5:10,2:10执行reboot