我开始尝试getopts,但遇到了一些错误。当我输入无效选项(例如 -A)时,程序输出不是它需要的。
#!/bin/bash
function usage() {
echo "Usage: $0 -h [database host] -d [test database name]"
exit 1
}
while getopts “:h:d:” opt; do
case ${opt} in
h)
db_host=$OPTARG
;;
d)
test_db=$OPTARG
;;
?)
echo "Invalid option: -$OPTARG" 1>&2
usage
exit 1
;;
:)
echo “Option -$OPTARG requires an argument.” 1>$2
usage
exit 1
;;
esac
done
shift $((OPTIND-1))
if [ -z $db_host ] || [ -z $test_db ]; then
usage
else
echo "Your host is $db_host and your test database is $test_db."
fi
示例程序输出:
./opt.sh: illegal option -- A
Invalid option: -
Usage: ./opt.sh -h [database host] -d [test database name]
所以,基本上有两个问题:
1)我想完全摆脱第一个错误消息。我想提供我自己的错误消息。2)为什么我的脚本不产生"无效选项:-A"而不仅仅是"无效选项:-"
你在选项参数周围有错误的引号类型getopts
,它们是"卷曲引号"而不是 ASCII 双引号。因此,:
不是选项的第一个字符,因此您不会收到静默错误报告。
将其更改为
while getopts ':h:d:' opt; do