Linux shell脚本进阶使用
Posted 背对背依靠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux shell脚本进阶使用相关的知识,希望对你有一定的参考价值。
shell的循环控制语句 - continue:提前结束某次循环,重新开始下一次 - break:提前结束某层循环 范例: #求100以内的奇数和 #!/bin/bash sum=0 for i in `seq 100`;do if [ $[i%2] -ne 0 ];then continue el
以上是关于Linux shell脚本进阶使用的主要内容,如果未能解决你的问题,请参考以下文章