标签:pass 使用 字符 int 字符串 测试 test not ash
Bash 中使用 -z
测试一个字符串长度为零
VERSION="2018.08"
if [[ -z $VERSION ]]; then
echo "would not print"
fi
if [[ -z $NOT_EXIST ]]; then
echo "test pass"
fi
标签:pass 使用 字符 int 字符串 测试 test not ash
原文地址:https://www.cnblogs.com/wander4096/p/9448114.html