web-dev-qa-db-ja.com

bashで短いオプションと長いオプションの両方を同時にサポートする方法は?

bashスクリプトで短いオプションと長いオプションの両方をサポートしたいので、次のことができます。

$ foo -ax --long-key val -b -y SOME FILE NAMES

出来ますか?

29
Xiè Jìléi

getoptは長いオプションをサポートしています。

http://man7.org/linux/man-pages/man1/getopt.1.html

引数を使用した例を次に示します。

#!/bin/bash

OPTS=`getopt -o axby -l long-key: -- "$@"`
if [ $? != 0 ]
then
    exit 1
fi

eval set -- "$OPTS"

while true ; do
    case "$1" in
        -a) echo "Got a"; shift;;
        -b) echo "Got b"; shift;;
        -x) echo "Got x"; shift;;
        -y) echo "Got y"; shift;;
        --long-key) echo "Got long-key, arg: $2"; shift 2;;
        --) shift; break;;
    esac
done
echo "Args:"
for arg
do
    echo $arg
done

$ foo -ax --long-key val -b -y SOME FILE NAMESの出力:

Got a
Got x
Got long-key, arg: val
Got b
Got y
Args:
SOME
FILE
NAMES
38
Brian Clements