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

shell 中利用getopts

时间:2014-09-16 19:09:31      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:shell   getopts

[root@jboss shell]# cat getopts.sh 

#!/bin/bash

#date=2014-09-16

#is to practice  the getopts

while getopts "a:bc" arg(:前面的变量是一定要跟参数的)

do 

case $arg in

 a)

echo "a‘s arg:$OPTARG"

;;

 b)

echo "b"

;;

 c)

echo "c"

;;

 ?)

echo "unkown argument"

     exit1

;;

esac

done


[root@jboss shell]# ./getopts.sh -b

b

[root@jboss shell]# ./getopts.sh -c

c

[root@jboss shell]# ./getopts.sh c

[root@jboss shell]# ./getopts.sh -a /root/

a‘s arg:/root/

如果不加参数的话会报错的。

[root@jboss shell]# ./getopts.sh -a

./getopts.sh: option requires an argument -- a

unkown argument

./getopts.sh: line 18: exit1: command not found


本文出自 “路由汗水交换成功” 博客,请务必保留此出处http://ghnhl.blog.51cto.com/1630025/1553353

shell 中利用getopts

标签:shell   getopts

原文地址:http://ghnhl.blog.51cto.com/1630025/1553353

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