ว่า "วิธีการที่เหมาะสม" ของการใช้ตัวเลือกยาวในเปลือกสคริปต์ผ่านทางยูทิลิตี้ getopt GNU นอกจากนี้ยังมีgetopts ที่เป็น bash ในตัวแต่อนุญาตให้ใช้ตัวเลือกสั้น ๆ เช่น-t
เท่านั้น เป็นตัวอย่างของgetopt
การใช้งานที่สามารถพบได้ที่นี่
นี่คือสคริปต์ที่แสดงให้เห็นว่าฉันจะเข้าถึงคำถามของคุณอย่างไร คำอธิบายของขั้นตอนส่วนใหญ่จะถูกเพิ่มเป็นความคิดเห็นภายในสคริปต์เอง
#!/bin/bash
# GNU getopt allows long options. Letters in -o correspond to
# comma-separated list given in --long.
opts=$(getopt -o t --long test -- "$*")
test $? -ne 0 && exit 2 # error happened
set -- $opts # some would prefer using eval set -- "$opts"
# if theres -- as first argument, the script is called without
# option flags
if [ "$1" = "--" ]; then
echo "Not testing"
testing="n"
# Here we exit, and avoid ever getting to argument parsing loop
# A more practical case would be to call a function here
# that performs for no options case
exit 1
fi
# Although this question asks only for one
# option flag, the proper use of getopt is with while loop
# That's why it's done so - to show proper form.
while true; do
case "$1" in
# spaces are important in the case definition
-t | --test ) testing="y"; echo "Testing" ;;
esac
# Loop will terminate if there's no more
# positional parameters to shift
shift || break
done
echo "Out of loop"
ด้วยความเรียบง่ายเพียงเล็กน้อยและลบความคิดเห็นสิ่งนี้สามารถย่อให้:
#!/bin/bash
opts=$(getopt -o t --long test -- "$*")
test $? -ne 0 && exit 2 # error happened
set -- $opts
case "$1" in
-t | --test ) testing="y"; echo "Testing";;
--) testing="n"; echo "Not testing";;
esac