Shell 脚本控制语句
Posted 阿妮承呢
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell 脚本控制语句相关的知识,希望对你有一定的参考价值。
1、if 语句
if condition1;then command1 elif condition2;then command2 else command3 fi
2、case 语句
case var in pattern1) command1 ;; pattern2) command2 ;; *) ;; esac
3、for 语句
for var in list;do command done
4、while 语句
while codition;do command done
以上是关于Shell 脚本控制语句的主要内容,如果未能解决你的问题,请参考以下文章