摘要:
####基本语法: ``` case expression in pattern1) statement1 ;; pattern2) statement2 ;; *) statement3 ;; esac ``` ####注意事项: * 以 **`case`** 开始 **`esac`** 结尾 * 阅读全文
摘要:
####基本语法: (1)单分支 ``` if [ condition ];then statement(s) fi 或 if [ condition ] then statement(s) fi ``` (2)多分支 ``` if [ condition1 ]; then statement1(s 阅读全文