在特定的Bash版本4.0.0
中,有没有办法在启用$@
时使用空set -u
引发未绑定的变量错误?
请考虑以下事项:
#!/usr/bin/env bash-4.0.0-1
set -xvu
echo "$BASH_VERSION"
echo "${BASH_VERSINFO[@]}"
main () {
printf '%q\n' "${@:-}"
}
main "${@:-}"
当我提供一组空的参数时,给我以下输出:
neech@nicolaw.uk:~ $ ./test.sh
echo "$BASH_VERSION"
+ echo '4.0.0(1)-release'
4.0.0(1)-release
echo "${BASH_VERSINFO[@]}"
+ echo 4 0 0 1 release x86_64-unknown-linux-gnu
4 0 0 1 release x86_64-unknown-linux-gnu
main () {
printf '%q\n' "${@:-}"
}
main "${@:-}"
./test.sh: line 12: $@: unbound variable
我只在Bash版本4.0.0
中看到此行为。
我希望使用变量替换${@:-}
可以让我解决这个问题,但似乎没有。
有办法解决这个问题吗?
答案 0 :(得分:4)
$@
,$*
是特殊变量,因此应始终定义它是一个错误
https://unix.stackexchange.com/questions/16560/bash-su-unbound-variable-with-set-u
一种解决方法,可能:
set +u
args=("$@")
set -u
main "${args[@]}"
或者也可能
main "${@:+$@}"
答案 1 :(得分:0)
为什么不自行处理错误?通过这种方式,您可以准确控制遇到异常时发生的情况,例如返回自定义退出代码和该错误的消息,而不是局限于某些预定义的行为。
function log_error
{
[[ $# -ne 1 ]] && return 1
typeset msg="$1"
typeset timestamp=$(date "+%F %T")
echo "[${timestamp}] [ERROR] - $msg " >&2
}
if [[ -z "$BASH_VERSION" ]]
then
log_error "BASH VERSION is not set"
exit 1
fi