shell getopt getopts获取参数
#!/bin/sh
#说明
show_usage="args: [-i , -p , -u , -w , -a , -s , -d , -v ]\
[--ip=, --port=, --user=, --pwd=, --path=, --script=, --debug=, --version=]"
#参数
opt_ip=""
opt_port=""
opt_user=""
opt_pwd=""
opt_path=""
opt_script=""
opt_debug=""
opt_version=""
GETOPT_ARGS=`getopt -o i:p:u:w:a:s:d:v: -al ip:,port:,user:,pwd:,path:,script:,debug:,version: -- "$@"`
eval set -- "$GETOPT_ARGS"
#获取参数
while [ -n "$1" ]
do
case "$1" in
-i|--ip) opt_ip=$2; shift 2;;
-p|--port) opt_port=$2; shift 2;;
-u|--user) opt_user=$2; shift 2;;
-w|--pwd) opt_pwd=$2; shift 2;;
-a|--path) opt_path=$2; shift 2;;
-s|--script) opt_script=$2; shift 2;;
-d|--debug) opt_debug=$2; shift 2;;
-v|--version) opt_version=$2; shift 2;;
--) break ;;
*) echo $1,$2,$show_usage; break ;;
esac
done
if [[ -z $opt_ip || -z $opt_port || -z $opt_user || -z $opt_pwd || -z $opt_path || -z $opt_script || -z $opt_debug || -z $opt_version ]]; then
echo $show_usage
echo "opt_ip:"$opt_ip",opt_port:"$opt_port",opt_user:"$opt_user",opt_pwd:"$opt_pwd",opt_path:"$opt_path",opt_script:"$opt_script",opt_debug:"$opt_debug",opt_version:"$opt_version
exit 0
fi
#开始处理
#ip port user pwd 连接服务器
#script path debug version 作为参数执行
来源: http://my.oschina.net/u/659405/blog/467855
一、找出选项
1、处理简单选项 在抽取每个参数是,使用case语句判断参数是否符合选项格式
[root@rac2 ~]# cat t3.sh
#!/bin/bash
while [ -n "$1" ] ---此处的$1必须加且只能用双引号
do
case $1 in ---此处的$1可以加双引号或不加
-a) echo "found the -a option";; ---此处的两个分号一定要加上
-b) echo "found the -b option";;
-c) echo "found the -c option";;
*) echo "$1 is not an option";;
esac
shift
done
[root@rac2 ~]# ./t3.sh -a -b -c -g
found the -a option
found the -b option
found the -c option
-g is not an option
case语句检查每个参数是否为有效的选项,当找到一个选项时,就在case语句中运行适当的命令。
2、从参数中分离选项
linux使用特殊字符码将选项和普通参数分开,这个字符码告诉脚本选项结束和普通参数开始的位置。所以发现双破折号后,
脚本就能够安全的将剩余的命令行参数作为参数而不是选项来处理。
[root@rac2 ~]# cat t4.sh
#!/bin/bash
while [ -n "$1" ]
do
case $1 in
-a) echo "found the -a option";;
-b) echo "found the -b option";;
-c) echo "found the -c option";;
--) shift
break ;;
*) echo "$1 is not an option";;
esac
shift
done
count=1
for param in $@
do
echo "parameter #count:$param"
count=$[ $count + 1 ]
done
[root@rac2 ~]# ./t4.sh
[root@rac2 ~]# ./t4.sh -a -v -b -- test1 test2 test3 ---当脚本到达双破折号是,停止处理选项,并将其余的参数视为命令行参数
found the -a option
-v is not an option
found the -b option
parameter #count:test1
parameter #count:test2
parameter #count:test3
3、处理带值的选项
[root@rac2 ~]# cat t5.sh
#!/bin/bash
while [ -n "$1" ]
do
case $1 in
-a) echo "found the -a option";;
-b) param="$2"
echo "found the -b option,with parameter value $param"
shift 1;;
-c) echo "found the -c option";;
--) shift
break;;
esac
shift
done
count=1
for param in "$@"
do
echo "parameter #count:$param"
count=$[ $count + 1 ]
done
[root@rac2 ~]# ./t5.sh -a -b 56 -c -- test1 test2 test3
found the -a option
found the -b option,with parameter value 56
found the -c option
parameter #count:test1
parameter #count:test2
parameter #count:test3
本例中-b有附加的参数值,由于要处理的参数是$1.所以知道附加参数位于$2,于是从变量$2中抽取参数值。
二、getopt命令
getopt命令是个不错的工具,在处理命令行选项时非常的方便,它对命令行参数进行重新的组织,使其更便于在脚本中解析。
1、命令格式
getopt options optstring parameters
其中optstring是处理的关键,他定义命令行中有效的选项字母,然后,在每个需要参数值的选项字母后面放置一个冒号。
[root@rac2 ~]# getopt ab:cd -a -b test1 -cd test2 test3
-a -b test1 -c -d -- test2 test3
如果指定的选项不包含在选项字符串内,getopt命令会默认生成一个错误信息
[root@rac2 ~]# getopt ab:cd -a -b test1 -cde test2 test3
getopt:无效选项 -- e
-a -b test1 -c -d -- test2 test3
如果希望忽略这个错误消息,可以再命令中使用-q选项:
[root@rac2 ~]# getopt -q ab:cd -a -b test1 -cde test2 test3
-a -b 'test1' -c -d -- 'test2' 'test3'
2、在脚本中使用getopt
使用set命令可以讲命令行参数变量替换为set命令的的命令行中的值。
set -- `getopt -q ab:cd "$@"`
[root@rac2 ~]# cat t7.sh
#!/bin/bash
set -- `getopt -q ab:c "$@"`
while [ -n "$1" ]
do
case $1 in
-a) echo "found the -a option";;
-b) param="$2"
echo "found -b option with parameter value $param"
shift;;
-c) echo "found the -c option";;
--) shift
break;;
*) echo "$1 is not an option";;
esac
shift
done
count=1
for param in "$@"
do
echo "parameter #$count:$param"
count=$[ $count + 1 ]
done
[root@rac2 ~]# ./t7.sh -ac
found the -a option
found the -c option
[root@rac2 ~]# ./t7.sh -a -b zhou -cd test1 test2 test3
found the -a option
found -b option with parameter value 'zhou'
found the -c option
parameter #1:'test1'
parameter #2:'test2'
parameter #3:'test3'
如果命令行参数中存在空格就会出现下面的情况
[root@rac2 ~]# ./t7.sh -a -b zhou -cd "test1 test2" test3
found the -a option
found -b option with parameter value 'zhou'
found the -c option
parameter #1:'test1
parameter #2:test2'
parameter #3:'test3'
getopt命令不能很好的处理带空格的参数值,它将空格解析为参数分隔符,而不是将双引号引起来的两个值合并为一个参数。
解决上面的问题可以使用getopts命令
Growing old is mandatory, growing up is optional .