Bash之break和continue命令在循环中的作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash之break和continue命令在循环中的作用相关的知识,希望对你有一定的参考价值。
1 continue:直接跳过本次循环,进入下一次循环。
#!/bin/bash
a=10
b=15
while [ $a -le $b ]
do
((a++))
if [ $a -eq 11 ] || [ $a -eq 13 ]
then
continue
fi
echo $a
done
[[email protected] ~]# ./a.sh
12
14
15
16
2 break:此命令将会跳出循环
#!/bin/bash
a=8
b=15
while [ $a -le $b ]
do
((a++))
if [ $a -gt 10 ]
then
break
fi
echo $a
done
[[email protected] ~]# ./a.sh
9
10
本文出自 “一万年太久,只争朝夕” 博客,请务必保留此出处http://zengwj1949.blog.51cto.com/10747365/1919414
以上是关于Bash之break和continue命令在循环中的作用的主要内容,如果未能解决你的问题,请参考以下文章