美文网首页
2018-07-25 Shell while

2018-07-25 Shell while

作者: 七点水Plus | 来源:发表于2018-07-25 17:44 被阅读0次

    From: https://blog.csdn.net/like_LeafFlying/article/details/72356342?locationNum=8&fps=1

    #!/bin/bash
    
    # 显示一系列数字
    
    count=1
    
    while [ $count -le 6 ]; do
        echo $count
        count=$((count + 1))
    done
    echo "finished"

    相关文章

      网友评论

          本文标题:2018-07-25 Shell while

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