shell--字符串是否为空

b1=
b2=""
b3="hello"
if [[ -n "${b3}" ]]
then
    echo "not null"
else
    echo "null"
fi

b1     null

b2     null

b3     not null

 

-n str   字符串长度非零

posted @ 2014-06-11 10:49  helloweworld  阅读(1189)  评论(0编辑  收藏  举报