美文网首页
[Linux] shell脚本while无限循环的写法

[Linux] shell脚本while无限循环的写法

作者: V_Jan | 来源:发表于2020-06-25 21:52 被阅读0次

    shell里有for, 也有while, 如果要做测试,可以简单的用while: 写一个无限循环:

    while :
    do
          echo "building"
          // if some criteria
          // exit 0 //success
          //or
          // exit 1 //fail
    done
    

    相关文章

      网友评论

          本文标题:[Linux] shell脚本while无限循环的写法

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