码迷,mamicode.com
首页 > 系统相关 > 详细

Shell 脚本控制语句

时间:2017-07-21 01:12:57      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:command   comm   shell   cond   lis   color   shel   blog   while   

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 脚本控制语句

标签:command   comm   shell   cond   lis   color   shel   blog   while   

原文地址:http://www.cnblogs.com/m2492565210/p/7212276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!