Saya mencoba menjalankan skrip shell berikut yang seharusnya memeriksa apakah string tidak spasi atau kosong. Namun, saya mendapatkan hasil yang sama untuk semua 3 string yang disebutkan. Saya telah mencoba menggunakan sintaks "[[" juga tetapi tidak berhasil.
Ini kode saya:
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
Saya mendapatkan keluaran berikut:
# ./checkCond.sh
Str is not null or space
Str2 is not null or space