bash – 如何在使用getopts提取解析的项目后获取剩余的args?

前端之家收集整理的这篇文章主要介绍了bash – 如何在使用getopts提取解析的项目后获取剩余的args?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用getopts解析一些bash脚本的参数,但希望能够访问未包含在选项列表中的其余args.例如,如果我有一个电话:
% script -a -b param -c param -d other arguments here

我会:

while getopts "ab:c:d" opt ; do
.
done

获取“其他参数”的最简单方法是什么,这应该是getopts未处理的?

你需要在解析arg时移位,或者放置

在完成解析后转移$((OPTIND -1)),然后以通常的方式处理,例如

while getopts "ab:c:d" opt ; do
.
done
shift $(expr $OPTIND - 1 )

while test $# -gt 0; do
  echo $1
  shift
done
原文链接:https://www.f2er.com/bash/386007.html

猜你在找的Bash相关文章