gpt4 book ai didi

shell - 如何检查环境变量是否设置为 'set -o nounset' ?

转载 作者:行者123 更新时间:2023-12-02 01:46:37 25 4
gpt4 key购买 nike

在 bash/zsh 中,以下检查变量的检查不起作用:

#!/bin/zsh

set -o nounset # Error when unset vars are used
set -o errexit

if [ -n ${foo-x} ]; then
echo "Foo exists!"
else
echo "Foo doesn't exist"
fi

因为 foo 即使不存在也会展开,所以 nounset 会触发并退出。如何在不扩展变量的情况下检查变量是否存在?我真的很喜欢 nounset 和 errexit,所以我不想每次我想检查是否设置了某些 var 时都中途禁用它们。

最佳答案

您可以创建一个用于检查的函数(并且仅在函数中转动nounset),使用变量名调用该函数并使用间接变量引用。类似于下一个:

set -o nounset
set -o errexit

isset() {
set +o nounset
[[ -n "${!1+x}" ]]
result=$?
set -o nounset
return $result
}

a=1
#call the "isset" with the "name" not value, so "a" and not "$a"
isset a && echo "a is set" || echo "a isnt set"

b=''
isset b && echo "b is set" || echo "b isnt set"

isset c && echo "c is set" || echo "c isnt set"

打印:

a is set
b is set
c isnt set

编辑

刚刚学到了一个干净的方法,使用-v varname(需要bash 4.2+或zsh 5.3+)

[[ -v a ]] && echo "a ok" || echo "a no"
[[ -v b ]] && echo "b ok" || echo "b no"
[[ -v c ]] && echo "c ok" || echo "c no"

关于shell - 如何检查环境变量是否设置为 'set -o nounset' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25032910/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com