linux-tutorial/codes/shell/示例脚本/逻辑控制/判断字符串长度是否为零.sh

30 lines
432 B
Bash
Raw Normal View History

2019-05-10 11:17:57 +08:00
#!/bin/bash
# testing string length
#-n 判断长度是否非零
#-z 判断长度是否为零
val1=testing
val2=''
if [ -n "$val1" ]
then
echo "The string $val1 is not empty"
else
echo "The string $val1 is empty"
fi
if [ -z "$val2" ]
then
echo "The string $val2 is empty"
else
echo "The string $val2 is not empty"
fi
if [ -z "$val3" ]
then
echo "The string $val3 is empty"
else
echo "The string $val3 is not empty"
fi