Bash でオプションを解析するために使用するスニペットを次に示します。
#!/bin/bash
PROGNAME=${0##*/}
PROGVERSION=0.1
wW='-4.5.5-double'
reName=
usage()
{
cat << EO
Script purpose goes here.
EO
cat <<EO | column -s\& -t
-h, --help & show this output
-r, --rename & renames confout to Your gro
-v, --version & show version information
-w, --workWith & gromax exec suffix
EO
}
SHORTOPTS="hvw:r"
LONGOPTS="help,version,workWith:rename"
ARGS=$(getopt -s bash --options $SHORTOPTS --longoptions $LONGOPTS --name $PROGNAME -- "$@")
eval set -- "$ARGS"
while true; do
case $1 in
-h|--help)
usage; exit 0;;
-v|--version)
echo "$PROGVERSION"; exit 0;;
-w|--workWith)
wW=$2; shift;;
-r|--rename)
reName="true"; shift;;
--)
shift; break;;
*)
shift; break;;
esac
shift
done
# ====================
## finally the script:
echo "rename:" $reName
echo ' wW:' $wW
このスニペットは、トリガー (-r) の前にある場合にのみ、オプション (-w) を解析します。
~/wrk/mlDn/vas/res/bbst: test.bash -w 'dfdff' -r
rename: true
wW: dfdff
~/wrk/mlDn/vas/res/bbst: test.bash -r -w 'dfdff'
rename: true
wW: -4.5.5-double
これはどのように修正できますか?私のスニペットの何が問題になっていますか?