Můžete použít syntaxi regulárního výrazu bash.
Vyžaduje použití dvojitých hranatých závorek [[ ... ]]
, (obecně všestrannější).
Proměnnou není nutné uvádět. Samotný regulární výraz nesmí být citován
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
Výstup
Has length, and contain only whitespace " "
Is either null or contain non-whitespace "abc "
Is either null or contain non-whitespace ""
Mnohé z těchto odpovědí jsou mnohem složitější nebo mnohem méně čitelné, než by měly být.
[[ $string = *[[:space:]]* ]] && echo "String contains whitespace"
[[ $string = *[![:space:]]* ]] && echo "String contains non-whitespace"