如何在 Bash 中判断变量是否为空
如何在 Bash 中检查变量是否为空?
How can I check if a variable is empty in Bash?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Bash 中检查变量是否为空?
How can I check if a variable is empty in Bash?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(11)
在 Bash 中,至少可以使用以下命令测试如果 $var 为空:
命令
man test
是你的朋友。In Bash at least the following command tests if $var is empty:
The command
man test
is your friend.假设重击:
Presuming Bash:
我还看到
这显然非常强大并且独立于 shell。
此外,“空”和“未设置”之间也有区别。请参阅如何判断 Bash shell 脚本中是否未定义字符串。
I have also seen
which is obviously very robust and shell independent.
Also, there is a difference between "empty" and "unset". See How to tell if a string is not defined in a Bash shell script.
如果设置了变量,则打印
yes
。${foo:+1}
当变量被设置时将返回1,否则将返回空字符串。prints
yes
if the variable is set.${foo:+1}
will return 1 when the variable is set, otherwise it will return empty string.问题询问如何检查变量是否为空字符串,并且已经给出了最佳答案。
但我在 PHP 编程一段时间后才来到这里,我实际上是在寻找像 PHP 中的空函数一样在 Bash shell 中工作的检查。
阅读完答案后,我意识到我在 Bash 中没有正确思考,但无论如何,在那一刻,像 PHP 中的 empty 这样的函数在我的 Bash 代码中会非常方便。
由于我认为这可能会发生在其他人身上,因此我决定在 Bash 中转换 PHP 空函数。
根据 PHP 手册:
变量被认为是空的,如果它不存在或者它的值为以下之一:
当然,null 和 false 情况在 bash 中无法转换,因此它们被省略。
使用示例:
演示:
以下片段:
输出:
话虽如此,在 Bash 逻辑中,此函数中对零的检查可能会导致附带问题,恕我直言,使用此函数的任何人都应该评估此风险,并可能决定切断这些检查,只留下第一个.
The question asks how to check if a variable is an empty string and the best answers are already given for that.
But I landed here after a period passed programming in PHP, and I was actually searching for a check like the empty function in PHP working in a Bash shell.
After reading the answers I realized I was not thinking properly in Bash, but anyhow in that moment a function like empty in PHP would have been soooo handy in my Bash code.
As I think this can happen to others, I decided to convert the PHP empty function in Bash.
According to the PHP manual:
a variable is considered empty if it doesn't exist or if its value is one of the following:
Of course the null and false cases cannot be converted in bash, so they are omitted.
Example of usage:
Demo:
The following snippet:
outputs:
Having said that in a Bash logic the checks on zero in this function can cause side problems imho, anyone using this function should evaluate this risk and maybe decide to cut those checks off leaving only the first one.
如果变量未设置或设置为空字符串 (""),则返回
true
。This will return
true
if a variable is unset or set to the empty string ("").您可能想区分未设置的变量和已设置且为空的变量:
结果:
顺便说一句,我建议使用
set -u
这会在读取未设置的变量时导致错误,这可以使您免遭诸如此类的灾难 您可以在此处此内容以及“严格模式”的其他最佳实践>。
You may want to distinguish between unset variables and variables that are set and empty:
Result:
BTW, I recommend using
set -u
which will cause an error when reading unset variables, this can save you from disasters such asYou can read about this and other best practices for a "strict mode" here.
检查变量 v 是否未设置
To check if variable v is not set
如果您更喜欢使用
测试
:If you prefer to use
test
: