文字列がスペースでも空でもないことをチェックするはずの次のシェルスクリプトを実行しようとしています。ただし、上記の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