shellLinux shell 之break和continue详解

Posted

tags:

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

break和continue都可以在循环中使用,但是两个的功能有点不同,比如break是跳出整个循环,而continue则是跳出本次循环,继续下个循环,下面我们会通过例子来演示这两个的不同之处。

**

例子:打印数字1-10,如果 i>8则退出循环。

#!/bin/bash -

for i in `seq 10`
do
        [ $i -gt 8 ] && break || echo $i
done

执行结果:

[[email protected] scripts]# bash break.sh 
1
2
3
4
5
6
7
8
[[email protected] scripts]# 

实例2:循环1-10,除了8,其余数字都显示。

[[email protected] scripts]# cat break.sh 
#!/bin/bash -

for i in `seq 10`
do
        [ $i -gt 8 ] && break || echo $i
done

执行结果
[[email protected] scripts]# bash continue.sh 
1
2
3
4
5
6
7
9
10
[[email protected] scripts]# 

总结:break 是跳出所有循环,continue是跳过一次循环。

版权所有:arppinging

以上是关于shellLinux shell 之break和continue详解的主要内容,如果未能解决你的问题,请参考以下文章

shellLinux shell 之 打印99乘法表详解

shellLinux shell 之 case 详解

shellLinux shell 之 判断用户输入的变量是否为数字

shellLinux shell 直接赋值和间接赋值

shellLinux shell中括号的用法

shellLinux shell for 循环详解