Bir dizenin boşluk veya boş olup olmadığını kontrol etmesi gereken aşağıdaki kabuk komut dosyasını çalıştırmaya çalışıyorum. Ancak, belirtilen tüm 3 dizeler için aynı çıktıyı alıyorum. Ben de "[[" sözdizimini kullanmayı denedim ama boşuna.
İşte kodum:
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
Aşağıdaki çıktıyı alıyorum:
# ./checkCond.sh
Str is not null or space
Str2 is not null or space