无论标志的顺序是什么,我都希望能够处理给定标志的多个参数。你们认为这是可以接受的吗?有什么改进吗?
所以:
$ ./script -c opt1 opt2 opt3 -b foo
opt1 opt2 opt3
foo
代码:
echo_args () {
echo "$@"
}
while (( $# > 0 )); do
case "$1" in
-b)
echo $2
;;
-c|--create)
c_args=()
# start looping from this flag
for arg in ${@:2}; do
[ "${arg:0:1}" == "-" ] && break
c_args+=("$arg")
done
echo_args "${c_args[@]}"
;;
*)
echo "huh?"
;;
esac
shift 1
done
答案 0 :(得分:2)
getopts实用程序应从参数列表中检索选项和选项参数。
$ cat script.sh
cflag=
bflag=
while getopts c:b: name
do
case $name in
b) bflag=1
bval="$OPTARG";;
c) cflag=1
cval="$OPTARG";;
?) printf "Usage: %s: [-c value] [-b value] args\n" $0
exit 2;;
esac
done
if [ ! -z "$bflag" ]; then
printf 'Option -b "%s" specified\n' "$bval"
fi
if [ ! -z "$cflag" ]; then
printf 'Option -c "%s" specified\n' "$cval"
fi
shift $(($OPTIND - 1))
printf "Remaining arguments are: %s\n" "$*"
请注意指南8: 当指定多个选项参数遵循单个选项时,它们应该作为单个参数显示,使用该参数中的逗号或该参数中的< blank>来分隔它们。
$ ./script.sh -c "opt1 opt2 opt3" -b foo
Option -b "foo" specified
Option -c "opt1 opt2 opt3" specified
Remaining arguments are:
标准链接如下:
答案 1 :(得分:-1)
我在评论中注意到你不想使用其中任何一个。你可以做的是将所有参数设置为一个字符串,然后使用循环对它们进行排序,拉出你想要设置为切换的那些并使用if语句对它们进行排序。这有点野蛮,但可以做到。
#!/bin/bash
#set all of the arguments as a variable
ARGUMENTS=$@
# Look at each argument and determine what to do with it.
for i in $ARGUMENTS; do
# If the previous loop was -b then grab the value of this argument
if [[ "$bgrab" == "1" ]]; then
#adds the value of -b to the b string
bval="$bval $i"
bgrab="0"
else
# If this argument is -b, prepare to grab the next argument and assign it
if [[ "$i" == "-b" ]]; then
bgrab="1"
else
#Collect the remaining arguments into one list per your example
RemainingArgs="$RemainingArgs $i"
fi
fi
done
echo "Arguments: $RemainingArgs"
echo "B Value: $bval"
我在很多脚本中都使用类似的东西,因为有大量的参数可以输入到其中一些中,并且脚本需要查看每个参数以找出要做的事情。它们可能出现故障或根本不存在,代码仍然必须工作。