getoptを使用するBashスクリプトは、「デフォルト」の2番目の引数に属します。

getoptを使用するBashスクリプトは、「デフォルト」の2番目の引数に属します。

Bashで小さなスクリプトを再学習していますが、getopt2番目のパラメータはcase

#! /bin/bash

LONG_OPTION_LIST=(
    "arg-a"
    "arg-b:"
    "arg-c:"
)
SORT_OPTION_LIST=(
    "a"
    "b:"
    "c:"
)
# Read the parameters
opts=$(getopt -q \
  --longoptions "$(printf "%s," "${LONG_OPTION_LIST[@]}")" \
  --name "$(basename "$0")" \
  --options "$(printf "%s" "${SORT_OPTION_LIST[@]}")" \
  -- "$@"
)
eval set -- "$opts"

echo "##$1##"
echo "##$2##"
echo "##$3##"
echo "##$4##"
echo "##$5##"
echo "#########"

argA=0
# It it is same a queue (process the head) because $1 and $2
for arg
do
    echo $1
    echo $2
    echo "--------"
    case "$arg" in
        --arg-a | -a)
            argA=1
            shift 1
            ;;
        --arg-b | -b)
            argB=$2
            shift 2
            ;;
        --arg-c | -c)
            argC=$2
            shift 2
            ;;
        *)
            echo "###$1###"
            echo "break"
            echo "_________"
            break
            ;;
    esac
done

echo "argA $argA"
echo "argB $argB"
echo "argC $argC"

いくつかの追加例:

user@pc:/tmp$ ./test.bash -a
##-a##
##--##
####
####
####
#########
-a
--
--------
--

--------
###--###
break
_________
argA 1
argB 
argC 
user@pc:/tmp$ ./test.bash -b 111
##-b##
##111##
##--##
####
####
#########
-b
111
--------
--

--------
###--###
break
_________
argA 0
argB 111
argC 
user@pc:/tmp$ ./test.bash -a -b 111
##-a##
##-b##
##111##
##--##
####
#########
-a
-b
--------
-b
111
--------
--

--------
###--###
break
_________
argA 1
argB 111
argC 
user@pc:/tmp$ ./test.bash -b 111 -a
##-b##
##111##
##-a##
##--##
####
#########
-b
111
--------
-a
--
--------
###-a###
break
_________
argA 0
argB 111
argC 

答え1

for arg
do
    ...
    shift 1

ここでのシフトは好きなようには機能しないと思います。ループが繰り返す単語はループの先頭に設定され、その単語のシフトは影響しません。例えば

$ set -- aa bb cc; 
$ for x; do echo $x; shift; done
aa
bb
cc

"$@"ただし、各要素に対して一度ずつ移動するため、ループ後は空になります。


getoptループを使用するほとんどの例では、およびを見てwhile true手動で移動し、ターミネータが表示されたらループを終了します(util-linux getoptは常にターミネータを追加しますが、オプションではないことを手動で確認することもできます)。$1$2--

たとえば、参照してください。

答え2

この値は変換する必要はありません。自動的に完了します。shift 2次のオプションは実際に隠されています。

ケースを作成する標準的な方法は次のとおりです。

for arg
do
    echo $1
    echo $2
    echo "--------"
    case "$arg" in
        --arg-a | -a)
            argA=1
            ;;
        --arg-b | -b)
            argB=$2
            ;;
        --arg-c | -c)
            argC=$2
            ;;
    esac
    shift
done

事件後の単一のシフトに注意してください。

また、この場合は*を入力しないでください。どんなオプションにも反応します。予期しないオプションに対するカスタム対応が必要な場合は、次のことをお勧めします。

opts=$(getopt ... )
[ $? -eq 0 ] || { 
    echo "Known options are..."
    exit 1
}

答え3

for@ikkachuが言ったように、エラーは使用中ですwhile。ありがとうございます。

ここで使用される小さなスクリプトがありますgetopt

#! /bin/bash

#~ get_opt.example.sh
#~ Copyright (C) 2022 Miguel de Dios Matias

#~ This program is free software: you can redistribute it and/or modify
#~ it under the terms of the GNU General Public License as published by
#~ the Free Software Foundation, either version 3 of the License, or
#~ (at your option) any later version.

#~ This program is distributed in the hope that it will be useful,
#~ but WITHOUT ANY WARRANTY; without even the implied warranty of
#~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#~ GNU General Public License for more details.

#~ You should have received a copy of the GNU General Public License
#~ along with this program. If not, see <http://www.gnu.org/licenses/>.

: '
Examples the calls:

$ ./getopt.example.bash --arg-b 111 -a 2222 3333
argA 1
argB 111
argC 
argD 0
unamedOptions 2222 3333

'

function help() {
    echo "$0 [(--arg-a | -a)] [(--arg-b | -b) <data_b>] [(--arg-c | -c <data_c>)] [-d] [(--help | -h)]"
}

LONG_OPTION_LIST=(
    "arg-a"
    "arg-b:"
    "arg-c:"
    "help"
)
SORT_OPTION_LIST=(
    "a"
    "b:"
    "c:"
    "d"
    "h"
)
# Read the parameters
opts=$(getopt -q \
  --longoptions "$(printf "%s," "${LONG_OPTION_LIST[@]}")" \
  --name "$(basename "$0")" \
  --options "$(printf "%s" "${SORT_OPTION_LIST[@]}")" \
  -- "$@"
)
eval set -- "$opts"

argA=0
argD=0
unamedOptions=()
# It it is same a queue (process the head) because $1 and $2
while true
do
    case "$1" in
        --arg-a | -a)
            argA=1
            ;;
        --arg-b | -b)
            argB=$2
            shift 1
            ;;
        --arg-c | -c)
            argC=$2
            shift 1
            ;;
        -d)
            argD=1
            ;;
        --help | -h)
            help
            exit 0
            ;;
        --)
            # End options now the unamed options
            ;;
        *)
            unamedOptions+=("$1")
            ;;
    esac
    shift 1
    if [ $# -eq 0 ]
    then
        break
    fi
done

echo "argA $argA"
echo "argB $argB"
echo "argC $argC"
echo "argD $argD"
echo "unamedOptions ${unamedOptions[@]}"

関連情報