如何在Bash中查找变量是否为空

时间:2010-06-17 11:00:37

标签: bash shell is-empty

如何在Bash中检查变量是否为空?

10 个答案:

答案 0 :(得分:362)

在bash中,至少以下命令测试如果$ var为空

if [[ -z "$var" ]]; then
   #do what you want
fi

命令man test是你的朋友。

答案 1 :(得分:98)

假设bash:

var=""

if [ -n "$var" ]; then
    echo "not empty"
else
    echo "empty"
fi

答案 2 :(得分:46)

我也见过

if [ "x$variable" = "x" ]; then ...

这显然非常强大且与shell无关。

此外,“空”和“未设置”之间存在差异。请参阅How to tell if a string is not defined in a bash shell script?

答案 3 :(得分:28)

if [ ${foo:+1} ]
then
    echo "yes"
fi
如果设置了变量,则

打印yes。设置变量时${foo:+1}将返回1,否则返回空字符串。

答案 4 :(得分:9)

[ "$variable" ] || echo empty
: ${variable="value_to_set_if_unset"}

答案 5 :(得分:7)

if [[ "$variable" == "" ]] ...

答案 6 :(得分:7)

如果变量未设置或设置为空字符串(""),则返回true

if [ -z "$MyVar" ]
then
   echo "The variable MyVar has nothing in it."
elif ! [ -z "$MyVar" ]
then
   echo "The variable MyVar has something in it."
fi

答案 7 :(得分:6)

问题询问如何检查变量是否为空字符串,并且已经给出了最佳答案。
但是我经过一段时间在php中编程后才登陆这里,我实际上搜索的是像在中使用bash shell中的空函数一样的检查。 在阅读完答案之后,我意识到我在bash中没有正确思考,但无论如何在那个时刻像php中的 empty 这样的函数在我的bash代码中会非常方便。
我认为这可能发生在其他人身上,我决定在bash中转换php空函数
根据{{​​3}}:
如果变量不存在或者其值为以下值之一,则该变量被视为空:

        
  • “”(空字符串)
  •     
  • 0(0为整数)
  •     
  • 0.0(0作为浮动)
  •     
  • “0”(0作为字符串)
  •     
  • 一个空数组
  •     
  • 声明的变量,但没有值

当然 null false 案例无法在bash中转换,因此省略它们。

function empty
{
    local var="$1"

    # Return true if:
    # 1.    var is a null string ("" as empty string)
    # 2.    a non set variable is passed
    # 3.    a declared variable or array but without a value is passed
    # 4.    an empty array is passed
    if test -z "$var"
    then
        [[ $( echo "1" ) ]]
        return

    # Return true if var is zero (0 as an integer or "0" as a string)
    elif [ "$var" == 0 2> /dev/null ]
    then
        [[ $( echo "1" ) ]]
        return

    # Return true if var is 0.0 (0 as a float)
    elif [ "$var" == 0.0 2> /dev/null ]
    then
        [[ $( echo "1" ) ]]
        return
    fi

    [[ $( echo "" ) ]]
}



用法示例:

if empty "${var}"
    then
        echo "empty"
    else
        echo "not empty"
fi



演示:
以下片段:

#!/bin/bash

vars=(
    ""
    0
    0.0
    "0"
    1
    "string"
    " "
)

for (( i=0; i<${#vars[@]}; i++ ))
do
    var="${vars[$i]}"

    if empty "${var}"
        then
            what="empty"
        else
            what="not empty"
    fi
    echo "VAR \"$var\" is $what"
done

exit

输出:

VAR "" is empty
VAR "0" is empty
VAR "0.0" is empty
VAR "0" is empty
VAR "1" is not empty
VAR "string" is not empty
VAR " " is not empty

在bash逻辑中说过,这个函数中的零检查可能会导致问题,任何使用此函数的人都应该评估这个风险,并且可能决定将这些检查切掉而只留下第一个。

答案 8 :(得分:2)

您可能想要区分未设置的变量和设置的变量以及空:

is_empty() {
    local var_name="$1"
    local var_value="${!var_name}"
    if [[ -v "$var_name" ]]; then
       if [[ -n "$var_value" ]]; then
         echo "set and non-empty"
       else
         echo "set and empty"
       fi
    else
       echo "unset"
    fi
}

str="foo"
empty=""
is_empty str
is_empty empty
is_empty none

结果:

set and non-empty
set and empty
unset

BTW,我建议使用set -u,这会在读取未设置的变量时导致错误,这可以帮助您避免灾难,例如

rm -rf $dir

您可以阅读关于&#34;严格模式的这个和其他最佳做法&#34; here

答案 9 :(得分:1)

检查变量v是否未设置

if [ "$v" == "" ]; then
   echo "v not set"
fi