在shell中,可以使用以下几种方法判断字符串是否为空:
-n
选项判断字符串长度是否为非零:if [ -n "$string" ]; then
echo "String is not empty"
else
echo "String is empty"
fi
-z
选项判断字符串长度是否为零:if [ -z "$string" ]; then
echo "String is empty"
else
echo "String is not empty"
fi
[[
和]]
进行比较:if [[ -n $string ]]; then
echo "String is not empty"
else
echo "String is empty"
fi
请注意,在shell脚本中,变量的引用一般需要使用双引号,以避免特殊字符的解释和空字符串的问题。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: shell定时删除日志脚本怎么写