麻烦使用getopt在Bash中解析长样式参数

时间:2015-11-30 15:40:51

标签: bash getopt

我的这个脚本似乎没有识别除--norecopy之外的任何其他选项,甚至只有当我的脚本指定为第二个参数时才会识别。

有人可以指出我做错了吗?

#!/usr/bin/env bash

norecopy=false
noencrypt=false
nopackage=false

# read the option
OPTS=`getopt --long norecopy,noencrypt,nopackage -n 'build' -- "$@"`

eval set -- "$OPTS"

while true ; do
    case "$1" in
        --norecopy ) echo "found norecopy" ; norecopy=true ; shift ;;
        --noencrypt ) echo "found noencrypt" ; noencrypt=true ; shift ;;
        --nopackage ) echo "found nopackage" ; nopackage=true ; shift ;;
        -- ) echo "Got here" ; shift ; break ;;
        * ) echo "unsupported option!" ; break ;;
    esac
done

exit 0

1 个答案:

答案 0 :(得分:1)

以下代码有效!

#!/usr/bin/env bash

norecopy=false
noencrypt=false
nopackage=false

# read the option
OPTS=`getopt --long norecopy,noencrypt,nopackage -n 'build' - "$@"`

eval set -- "$OPTS"

while true ; do
    case "$1" in
        --norecopy ) echo "found norecopy" ; norecopy=true ; shift ;;
        --noencrypt ) echo "found noencrypt" ; noencrypt=true ; shift ;;
        --nopackage ) echo "found nopackage" ; nopackage=true ; shift ;;
        -- ) echo "Got here" ; shift ; break ;;
        * ) echo "unsupported option!" ; break ;;
    esac
done

exit 0

我添加'set -x'来调试问题。我看到getopt命令中的单个连字符(而不是两个连续的连字符)按预期打印输出。请参阅以下两个命令:

$ getopt --long norecopy,noencrypt,nopackage -n build -- --norecopy --noencrypt --nopackage
 --noencrypt --nopackage --

$ getopt --long norecopy,noencrypt,nopackage -n build - --norecopy --noencrypt --nopackage
 --norecopy --noencrypt --nopackage --

我仍然不知道getopt这种行为背后的原因。论坛上有getopt源代码经验的人可能会提供帮助。然而,这种改变应该让你去!