linux-tutorial/codes/shell/示例脚本/逻辑控制/判断字符串长度是否为零.sh
2019-10-10 08:56:31 +08:00

31 lines
448 B
Bash

#!/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