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

shell 之case

时间:2017-01-05 19:01:56      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:command

在shell 脚本中,除了用if来判断逻辑外,还有一种常用的方式,那就是case了。具体格式为:

case 变量in

value1)

command

;;

value2)

command

;;

value3)

command

;;

*)

command

;;

esac

举例:

[root@bogon ~]# cat case.sh

#/bin/bash

read -p "input a number:" n

a=$[$n%2]

case $a in

1)

  echo "the unm is odd"

  ;;

0)

   echo "the unm is even"

  ;;

*) 

  echo "it is not a num"

  ;;

esac 


shell 之case

标签:command

原文地址:http://9872158.blog.51cto.com/9862158/1889295

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