Linux Shell编程三
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Shell编程三相关的知识,希望对你有一定的参考价值。
case分支条件语句。 case "string" in pattern_1) commands ;; pattern_2) commands ;; *) commands ;; esac 当条件语句中的string等于patern字符串时执行pattern下面命令。 当没有符合条件时,最后执行*)。 ";;"相当于switch语句中的break关键字,不加";;"会报错。
以上是关于Linux Shell编程三的主要内容,如果未能解决你的问题,请参考以下文章
Linux编程 22 shell编程(输出和输入重定向,管道,数学运算命令,退出脚本状态码)