美文网首页
shell-9 while

shell-9 while

作者: 巴巴11 | 来源:发表于2020-05-10 12:06 被阅读0次

    while循环语法

    while  [ condition ]      #注意,条件为真while才会循环,条件为假,while停止循环
     do
    
                 commands
    done
    

    while实战
    1)使用while 遍历文件内容


    image.png

    执行结果


    image.png

    使用while读出文件中的列,IFS指定默认的列分隔符


    image.png

    代码执行


    image.png

    相关文章

      网友评论

          本文标题:shell-9 while

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