方法#1:getopt [s]なしでbashを使用する
キーと値のペアの引数を渡す一般的な方法は次の2つです。
スペースで区切られたbash(例:--option argument
)(getopt [s]なし)
使用法 demo-space-separated.sh -e conf -s /etc -l /usr/lib /etc/hosts
cat >/tmp/demo-space-separated.sh <<'EOF'
#!/bin/bash
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-e|--extension)
EXTENSION="$2"
shift # past argument
shift # past value
;;
-s|--searchpath)
SEARCHPATH="$2"
shift # past argument
shift # past value
;;
-l|--lib)
LIBPATH="$2"
shift # past argument
shift # past value
;;
--default)
DEFAULT=YES
shift # past argument
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
echo "FILE EXTENSION = ${EXTENSION}"
echo "SEARCH PATH = ${SEARCHPATH}"
echo "LIBRARY PATH = ${LIBPATH}"
echo "DEFAULT = ${DEFAULT}"
echo "Number files in SEARCH PATH with EXTENSION:" $(ls -1 "${SEARCHPATH}"/*."${EXTENSION}" | wc -l)
if [[ -n $1 ]]; then
echo "Last line of file specified as non-opt/last argument:"
tail -1 "$1"
fi
EOF
chmod +x /tmp/demo-space-separated.sh
/tmp/demo-space-separated.sh -e conf -s /etc -l /usr/lib /etc/hosts
上記のブロックのコピー貼り付けからの出力:
FILE EXTENSION = conf
SEARCH PATH = /etc
LIBRARY PATH = /usr/lib
DEFAULT =
Number files in SEARCH PATH with EXTENSION: 14
Last line of file specified as non-opt/last argument:
#93.184.216.34 example.com
Bash Equals-Separated(eg --option=argument
)(getopt [s]なし)
使用法 demo-equals-separated.sh -e=conf -s=/etc -l=/usr/lib /etc/hosts
cat >/tmp/demo-equals-separated.sh <<'EOF'
#!/bin/bash
for i in "$@"
do
case $i in
-e=*|--extension=*)
EXTENSION="${i#*=}"
shift # past argument=value
;;
-s=*|--searchpath=*)
SEARCHPATH="${i#*=}"
shift # past argument=value
;;
-l=*|--lib=*)
LIBPATH="${i#*=}"
shift # past argument=value
;;
--default)
DEFAULT=YES
shift # past argument with no value
;;
*)
# unknown option
;;
esac
done
echo "FILE EXTENSION = ${EXTENSION}"
echo "SEARCH PATH = ${SEARCHPATH}"
echo "LIBRARY PATH = ${LIBPATH}"
echo "DEFAULT = ${DEFAULT}"
echo "Number files in SEARCH PATH with EXTENSION:" $(ls -1 "${SEARCHPATH}"/*."${EXTENSION}" | wc -l)
if [[ -n $1 ]]; then
echo "Last line of file specified as non-opt/last argument:"
tail -1 $1
fi
EOF
chmod +x /tmp/demo-equals-separated.sh
/tmp/demo-equals-separated.sh -e=conf -s=/etc -l=/usr/lib /etc/hosts
上記のブロックのコピー貼り付けからの出力:
FILE EXTENSION = conf
SEARCH PATH = /etc
LIBRARY PATH = /usr/lib
DEFAULT =
Number files in SEARCH PATH with EXTENSION: 14
Last line of file specified as non-opt/last argument:
#93.184.216.34 example.com
このガイド${i#*=}
での「部分文字列の削除」の検索について理解を深めるため。これは、が不要なサブプロセスを呼び出すか、2つの不要なサブプロセスを呼び出すことと機能的に同等です。`sed 's/[^=]*=//' <<< "$i"`
`echo "$i" | sed 's/[^=]*=//'`
方法#2:getopt [s]でbashを使用する
から:http : //mywiki.wooledge.org/BashFAQ/035#getopts
getopt(1)の制限(古い、比較的最近のgetopt
バージョン):
- 空の文字列である引数は処理できません
- 空白が埋め込まれた引数を処理できません
最近のgetopt
バージョンには、これらの制限はありません。
さらに、getopts
これらの制限がないPOSIXシェル(およびその他)のオファー。単純なgetopts
例を含めました。
使用法 demo-getopts.sh -vf /etc/hosts foo bar
cat >/tmp/demo-getopts.sh <<'EOF'
#!/bin/sh
# A POSIX variable
OPTIND=1 # Reset in case getopts has been used previously in the shell.
# Initialize our own variables:
output_file=""
verbose=0
while getopts "h?vf:" opt; do
case "$opt" in
h|\?)
show_help
exit 0
;;
v) verbose=1
;;
f) output_file=$OPTARG
;;
esac
done
shift $((OPTIND-1))
[ "${1:-}" = "--" ] && shift
echo "verbose=$verbose, output_file='$output_file', Leftovers: $@"
EOF
chmod +x /tmp/demo-getopts.sh
/tmp/demo-getopts.sh -vf /etc/hosts foo bar
上記のブロックのコピー貼り付けからの出力:
verbose=1, output_file='/etc/hosts', Leftovers: foo bar
の利点は次のgetopts
とおりです。
- 移植性が高く、などの他のシェルでも動作し
dash
ます。
-vf filename
典型的なUnixの方法のように、複数の単一オプションを自動的に処理できます。
の欠点getopts
は、追加のコードなし-h
では短いオプション(でなく--help
)しか処理できないことです。
すべての構文と変数の意味を説明するgetoptsチュートリアルがあります。bashにはもありhelp getopts
、これは参考になるかもしれません。
zparseopts -D -E -M -- d=debug -debug=d
これらの両方-d
を使用--debug
すると、$debug
配列のいずれecho $+debug[1]
かが使用されている場合、0または1が返されます。参照:zsh.org/mla/users/2011/msg00350.html