码迷,mamicode.com
首页 > 其他好文 > 详细

if与case

时间:2018-01-26 11:02:35      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:white   pre   gre   bash   case   $1   echo   one   ash   

#!/bin/bash
if [ $1 -lt 3 ];then
echo redhat
elif [ $1 -eq 3 ];then
echo green
elif [ $1 -gt 3 -a $1 -lt 5 ];then
echo yellow
else
echo white
fi


case $1 in
        1|one|first)echo redhat;;
        2)echo yellow;;
        3)echo green;;
        *)echo blue;;
esac

if与case

标签:white   pre   gre   bash   case   $1   echo   one   ash   

原文地址:http://blog.51cto.com/13560258/2065298

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