Puoi usare la sintassi regex di bash.
Richiede l'uso di doppie parentesi quadre [[ ... ]]
, (più versatile, in generale).
La variabile non deve essere quotata. La regex stessa non deve essere citato
for str in " " "abc " "" ;do
if [[ $str =~ ^\ +$ ]] ;then
echo -e "Has length, and contain only whitespace \"$str\""
else
echo -e "Is either null or contain non-whitespace \"$str\" "
fi
done
Uscita
Has length, and contain only whitespace " "
Is either null or contain non-whitespace "abc "
Is either null or contain non-whitespace ""
Molte di queste risposte sono molto più complesse, o molto meno leggibili, di quanto dovrebbero essere.
[[ $string = *[[:space:]]* ]] && echo "String contains whitespace"
[[ $string = *[![:space:]]* ]] && echo "String contains non-whitespace"