我正在尝试运行下面的 shell 脚本,它应该检查一个字符串是否既不是空格也不是空的。然而,我得到了所有提到的3个字符串的相同输出。我也试过使用“[[”语法,但没有用。
这是我的代码:
str="Hello World"
str2=" "
str3=""
if [ ! -z "$str" -a "$str"!=" " ]; then
echo "Str is not null or space"
fi
if [ ! -z "$str2" -a "$str2"!=" " ]; then
echo "Str2 is not null or space"
fi
if [ ! -z "$str3" -a "$str3"!=" " ]; then
echo "Str3 is not null or space"
fi
我得到了以下输出:
# ./checkCond.sh
Str is not null or space
Str2 is not null or space