วิธีที่ # 1: การใช้ bash โดยไม่มี getopt [s]
วิธีทั่วไปสองวิธีในการส่งผ่านข้อโต้แย้งคู่คีย์ - ค่า - คือ:
Bash Space-Separated (เช่น, --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 เท่ากับ - แยกออก (เช่น, --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#*=}
ค้นหา "กำจัดซับสตริง" ในคู่มือนี้ได้ดีขึ้น มันเทียบเท่ากับการใช้งาน`sed 's/[^=]*=//' <<< "$i"`
ที่เรียก subprocess ที่ไม่จำเป็นหรือ`echo "$i" | sed 's/[^=]*=//'`
เรียกsubprocesses ที่ไม่ต้องการสองตัว
วิธีที่ # 2: การใช้ bash กับ getopt [s]
จาก: http://mywiki.wooledge.org/BashFAQ/035#getopts
ข้อ จำกัด getopt (1) (รุ่นเก่ากว่าค่อนข้างใกล้เคียงgetopt
):
- ไม่สามารถจัดการกับอาร์กิวเมนต์ที่เป็นสตริงว่าง
- ไม่สามารถจัดการกับข้อโต้แย้งด้วยช่องว่างที่ฝังตัว
เมื่อเร็ว ๆ นี้getopt
รุ่นที่ไม่ได้มีข้อ จำกัด เหล่านี้
นอกจากนี้ข้อเสนอ POSIX เชลล์ (และอื่น ๆ ) getopts
ซึ่งไม่มีข้อ จำกัด เหล่านี้ ฉันได้รวม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ซึ่งจะอธิบายความหมายของไวยากรณ์และตัวแปรทั้งหมด ในทุบตียังมีhelp getopts
ซึ่งอาจเป็นข้อมูล
zparseopts -D -E -M -- d=debug -debug=d
และมีทั้ง-d
และ--debug
ใน$debug
อาร์เรย์echo $+debug[1]
จะกลับ 0 หรือ 1 ถ้าหนึ่งในผู้ที่ถูกนำมาใช้ Ref: zsh.org/mla/users/2011/msg00350.html