getopts的学习笔记
时间:2005-11-17 来源:xktop
getopts的基本用法:
while getopts "a:bc" opt;do
case $opt in
a ) process of a;;//$OPTARG is the a's arg
b ) process of b;;
c ) process of c;;
? ) echo "info"
exit 1;;
esac
done
shift $(($OPTIND - 1))
other code.......
这里"a:bc"表明选项的结构,:表示其前面的选项带有参数,这个例子就是说该脚本包含选项abc,其中a带有参数,如下:
-a arg -b -c或者可以写成-a arg -bc
这里变量$OPTARG存储相应选项的参数,而$OPTIND总是存储原始$*中下一个要处理的元素位置。
下面是一个简单例子(脚本为test):
echo $*
while getopts ":a:bc" opt
do
case $opt in
a ) echo $OPTARG
echo $OPTIND;;
b ) echo "b $OPTIND";;
c ) echo "c $OPTIND";;
? ) echo "error"
exit 1;;
esac
done
echo $OPTIND
shift $(($OPTIND - 1))
echo $0
echo $*
运行:
#./test -a 12 -bc 34
-a 12 -bc 34
12
3
b 3
c 4
4
./test
34
可见,通过shift $(($OPTIND - 1))的处理,$*中就只保留了除去选项内容的参数,可以在其后进行正常的shell编程处理了。
问题:getopts可不可以用于函数function,经过实验我发现结果很奇怪,这里面涉及function在shell中的具体展开问题。