我想使用getopts解析一些bash脚本的参数,但希望能够访问未包含在选项列表中的其余args.例如,如果我有一个电话:
% script -a -b param -c param -d other arguments here
我会:
while getopts "ab:c:d" opt ; do . done
你需要在解析arg时移位,或者放置
原文链接:https://www.f2er.com/bash/386007.html在完成解析后转移$((OPTIND -1)),然后以通常的方式处理,例如
while getopts "ab:c:d" opt ; do . done shift $(expr $OPTIND - 1 ) while test $# -gt 0; do echo $1 shift done