美文网首页
crontab配置

crontab配置

作者: 网络小乙 | 来源:发表于2021-01-25 16:49 被阅读0次
    1. crontab 文件的格式
      {minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script}
      - minute: 区间为 0 – 59
      - hour: 区间为0 – 23
      - day-of-month: 区间为0 – 31
      - month: 区间为1 – 12. 1 是1月. 12是12月.
      - Day-of-week: 区间为0 – 7. 周日可以是0或7.
    2. 每秒执行一次脚本
      • 编写执行逻辑脚本的shell脚本
      #crontab.sh
      #!/bin/bash 
      step=1   #间隔的秒数,不能大于60 
      for (( i = 0; i < 60; i=(i+step) )); do
          $(php '/data/www/html/test_cron.php') 
      sleep $step 
      done
      exit 0
      
      • crontab -e 输入以下语句,然后:wq 保存退出
      * * * * * /data/www/html/crontab.sh
      

    相关文章

      网友评论

          本文标题:crontab配置

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