unrecognized option error: getopt command in shell

unrecognized option error: getopt command in shell

我是 shell 和 Linux 的新手,如果有人能帮我找出命令中的错误,那就太好了:

if ! options=$(getopt -n myscript -l a:,b:,cc:,dd:,ee:,ff:,gg:,hh: -- "$@"); then exit 1; fi

我收到一条错误消息:

mhagent: unrecognized option '--hh'
options=' --aa '\''val1'\'' --ibb '\''val2'\'' --cc '\''val4'\'' --dd '\''val4'\'' --ee '\''val5'\'' --ff '\''val6'\'' --gg '\''val7'\'' --'

如果我删除最后一个选项:hh,它工作正常。

if ! options=$(getopt -n myscript -l a:,b:,cc:,dd:,ee:,ff:,gg: -- "$@"); then exit 1; fi

免责声明:此答案假设您正在使用来自 util-linux.

getopt

好的,这一点都不明显,但是您必须指定一个 optstring(即您要接受的短选项列表)。假设您不想接受任何短选项,只需传递一个空字符串即可。

概要如下:

getopt optstring parameters
getopt [options] [--] optstring parameters
getopt [options] -o|--options optstring [options] [--] parameters

请注意,所有 3 种形式都需要 optstring。

因为你需要传递-l,你必须使用其中一个有选项的,所以你对getopt的调用应该是:

getopt -n myscript -l a:,b:,cc:,dd:,ee:,ff:,gg:,hh: -- '' "$@"

或:

getopt -n myscript -l a:,b:,cc:,dd:,ee:,ff:,gg:,hh: -o '' -- "$@"