Linux crontab计划任务
# 查看当前用户的任务
crontab -l
# 编辑当前用户的任务
crontab -e
# 规则:
# 分 时 日 月 年 执行操作,以下内容即为 每天 01:30 执行 /root/backup.sh
# 30 01 * * * /bin/sh /root/backup.sh
# 重启 crontab
# CentOS 8
systemctl restart crond
# CentOS 7
service crond restart
# 查看当前用户的任务
crontab -l
# 编辑当前用户的任务
crontab -e
# 规则:
# 分 时 日 月 年 执行操作,以下内容即为 每天 01:30 执行 /root/backup.sh
# 30 01 * * * /bin/sh /root/backup.sh
# 重启 crontab
# CentOS 8
systemctl restart crond
# CentOS 7
service crond restart