定时器

作者: windyboy | 来源:发表于2017-08-03 09:43 被阅读0次

    crontab -h

    -e 编辑
    -l 列表
    -r删除

    */1 * * * * /usr/bin/test.sh ---->shell编写
    顺序分别为分 时 日 月 周

    • 所有
      数字 eg:4 代表相应的时间
      */2 每隔多久

    0 8-12 * * * 八点到十二点
    */3 * * * * /usr/bin/test.sh 每隔三分钟

    */2 * * * * cd /data/www/test_huohe/ && svn up 两分钟更新一次

    sbin/service crond start //启动服务
    /sbin/service crond stop //关闭服务
    /sbin/service crond restart //重启服务
    /sbin/service crond reload //重新载入配置

    https://tool.lu/crontab##

    相关文章

      网友评论

          本文标题:定时器

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