在 bash 的自定义 getopts 脚本中将参数作为选项传递

Pass parameters as option in custom getopts script in bash

我想将选项作为参数传递。例如:

mycommand -a 1 -t '-q -w 111'

脚本无法识别引号中的字符串。即它只获取字符串的一部分。

getopts 工作方式相同 - 它只看到 -q.

对于自定义 getopts,我使用类似的脚本(示例):

while :
do
    case  in
        -h | --help | -\?)
            # Show some help
            ;;
        -p | --project)
            PROJECT=""
            shift 2
            ;;
        -*)
            printf >&2 'WARN: Unknown option (ignored): %s\n' ""
            shift
            ;;
        *)  # no more options. Stop while loop
            break
            ;;
        --) # End of all options
        echo "End of all options"
            shift
            break
            ;;
    esac
done

也许我误解了这个问题,但 getopts 似乎对我有用:

while getopts a:t: arg
do
    case $arg in
        a)  echo "option a, argument <$OPTARG>"
            ;;
        t)  echo "option t, argument <$OPTARG>"
            ;;
    esac
done

运行:

bash gash.sh -a 1 -t '-q -w 111'
option a, argument <1>
option t, argument <-q -w 111>

这不就是你想要的吗?也许你错过了带参数的选项后的 :