[原]使用getopt传递脚本选项参数

   bash环境下,以“-”或“–”开头的参数称选项参数。可以使用bash内置命令getopts或外部命令getopt进行传递。getopts的时候可参考《》,以下用getopt的范例进行说明。
一、获取范例
getopt官网:点击
范例下载:

[原]使用getopt传递脚本选项参数下载文件
点击这里下载文件

二、前提
1、先确定是否增强版的getopt

引用
# getopt -T
# echo $?
4
# getopt -V
getopt (enhanced) 1.1.3

返回结果为4,则为增强版的getopt,否则为旧版本。
2、命令参数
getopt可以为bash提供短选项和长选项的参数引用:

引用
-o 短选项
-l 长选项
-n 脚本命令,若传递参数报错,会报该名字

选项的使用定义规则类似:

引用
ab:c::

意思是:

引用
a 后没有冒号,表示没有可以参数
b 后跟一个冒号,表示有一个必要的参数
c 后跟两个冒号,表示有一个可选的参数
长选项的定义相同,但用逗号分割。

三、示例脚本
截取主要部分:

引用
# 请注意定义方法,以及使用"$@"从bash获取参数,不能使用$*代替,“"”号也不能缺少
TEMP=`getopt -o ab:c:: –long a-long,b-long:,c-long:: \
    -n 'example.bash' — "$@"`

if [ $? != 0 ] ; then echo "Terminating…" >&2 ; exit 1 ; fi

# 使用eval set分配位置参数,$TEMP必须使用“"”号括住
eval set — "$TEMP"

#请留意shift需根据是否可接受参数而移动
while true ; do
 case "$1" in
   -a|–a-long) echo "Option a" ; shift ;;
   -b|–b-long) echo "Option b, argument \`$2'" ; shift 2 ;;
   -c|–c-long)
     # c 选项带一个可选的参数,若没有指定则为空,请留意后面给予选项参数的写法
     case "$2" in
     "") echo "Option c, no argument"; shift 2 ;;
     *)  echo "Option c, argument \`$2'" ; shift 2 ;;
     esac ;;
     –) shift ; break ;;
     *) echo "Internal error!" ; exit 1 ;;
     esac
done
#显示除选项参数外的参数
echo "Remaining arguments:"
for arg do echo '–> '"\`$arg'" ; done

四、使用
1、第一次

引用
# sh getopt-parse.bash -a "arg1 arg2"
Option a
Remaining arguments:
–> `arg1 arg2'

可以看到,-a后不能接受选项参数,其会作为普通参数存在。
2、第二次

引用
# sh getopt-parse.bash -b "arg4"
Option b, argument `arg4'
Remaining arguments:

-b选项可以接受参数。再试试这个:

引用
# sh getopt-parse.bash -b
example.bash:选项需要一个参数 — b
Remaining arguments:

-b后面跟的是必要参数哦,不能忽略。
3、第三次

引用
# sh getopt-parse.bash -c "arg3"
Option c, no argument
Remaining arguments:
–> `arg3'

奇怪,-c后已经跟有选项参数,但并没有识别到?再试试:

引用
# sh getopt-parse.bash -c"arg3"
Option c, argument `arg3'
Remaining arguments:

原来如此,-c和选项参数之间不能有空格。
4、全部一起

引用
# sh getopt-parse.bash -a "arg1 arg2" -c"arg3" -b "arg4" "arg5"
Option a
Option c, argument `arg3'
Option b, argument `arg4'
Remaining arguments:
–> `arg1 arg2'
–> `arg5'

请注意区分选项参数和普通参数。

五、遗留问题
   长选项使用可选参数会报错,可见:

引用
# sh getopt-parse.bash -c"more"
Option c, argument `more'
Remaining arguments:
# sh getopt-parse.bash –c-long"more"
example.bash:无法识别的选项“–c-longmore”
Remaining arguments:
# sh getopt-parse.bash –c-long "more"
Option c, no argument
Remaining arguments:
–> `more'

暂时没有找到解决的方法。

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/112512.html

(0)
上一篇 2021年8月27日
下一篇 2021年8月27日

发表回复

登录后才能评论