美文网首页
Linux 秒级定时任务

Linux 秒级定时任务

作者: 梦过无烟 | 来源:发表于2018-12-25 17:56 被阅读0次

    秒级定时任务脚本

    #!/bin/bash
    step=3 #间隔的秒数,不能大于60  
    
    for (( i = 0; i < 60; i=(i+step) )); do 
        `curl https://xxxxx`
       sleep $step
    done
    exit 0
    

    crontab -e 增加定时任务

    */1 * * * * root `bash 你的脚本位置`
    

    此写法不能使用 sh 执行。

    相关文章

      网友评论

          本文标题:Linux 秒级定时任务

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