作者:mobiledu2502861417 | 来源:互联网 | 2023-09-01 14:03
使用crontab定时执行脚本
whitch crontab
vi test.sh
chmod +x test.sh
- 使用root权限打开/etc/crontab,设置定时任务
00 01 * * * cd /home && sh test.sh >> /home/log 意思是每天1:00开启执行脚本,并把日志重定向到日志文件
service crond reload
0 0 * * * /home/test.sh $(date -d "1 day ago" +"\%Y-\%m-\%d") >> /home/log