shell脚本--continuebreak

Posted 寻觅beyond

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本--continuebreak相关的知识,希望对你有一定的参考价值。

shell中的continue和break和其他语言中的使用方法一模一样:continue用于跳过本次循环,break用于中断本层的循环

下面是使用例子:

#!/bin/bash
#文件名:test.sh

for i in 1 2 3 4 5 6 7 8 9
do
    if [ $i -eq 4 ]
    then
        continue
    else
        echo $i
    fi

    if [ $i -eq 6 ]
    then 
        break
    fi
done

  运行:

[email protected]:~$ ./test.sh
1
2
3
5
6
[email protected]:~$ 

  

以上是关于shell脚本--continuebreak的主要内容,如果未能解决你的问题,请参考以下文章

linux arm 运行 shell .sh 脚本文件报错:/bin/bash^M: bad interpreter: No such file or directory(dos2unix )(代码片

iOS shell脚本打包

java带标签的continuebreak

java带标签的continuebreak

shell脚本中的变量及变量传参详解

C#/.NET6期01C#基础11嵌套循环或者叫二重循环continuebreak