首页 > 代码库 > Linux Shell编程三

Linux Shell编程三

case分支条件语句。case "string" inpattern_1)    commands;;pattern_2)    commands;;*)    commands;;esac当条件语句中的string等于patern字符串时执行pattern下面命令。当没有符合条件时,最后执行*)。";;"相当于switch语句中的break关键字,不加";;"会报错。

 技术分享

Linux Shell编程三