crontab

作者: X1_blog | 来源:发表于2020-05-06 15:17 被阅读0次

定时任务: crontab

crontab -l 列出全部任务

crontab -e 为当前用户编辑任务

service crond restart 重启服务

Demo (每天的17点8分, 11,12,13分执行命令):

touch /home/llbrh/crontab/index.txt
crontab -e
8,11-13 17 * * * date >> /home/llbrh/crontab/index.txt   // 第n分钟, 一天的第n个小时, 一个月的第n天,一年的第n月, 一周的星期n
crontab.png

相关文章

网友评论

      本文标题:crontab

      本文链接:https://www.haomeiwen.com/subject/kwktghtx.html