美文网首页
linux for循环

linux for循环

作者: Dylan_abaa | 来源:发表于2020-06-22 09:41 被阅读0次

    for var in item1 item2 ... itemN

    do

        command1

        command2

        ...    commandN

    done

    for loop in 1 2 3 4 5

    do 

         echo "The value is: $loop"

    done

    挨个儿输出12345,比如The value is: 1。。。。

    for str in This is a stringdo 

     echo $str

    done

    挨个儿输出了单词

    相关文章

      网友评论

          本文标题:linux for循环

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