在书写linux shell 脚本我们经常会遇到,对一个字符串是否为空进行判断,下面我对几种常用的方法进行了一个总结: 1.-z判断 -z string True if the length of string is zero. 实例: if [ -z $i ] then echo "$i 是空字符串" fi 2.加一个字符串再比较 if [ X$STR = "X" ] then echo "空字符串" fi 3.直接使用变量判断 if [ &q
1.判断字符串为空 if [ -z "$str" ]; then echo "empty string" fi 2.判断文件是否存在 if [ -f /home/builder/.profile ]; then echo "File exists;" fi 3.逻辑非 if [ ! -f /home/builder/.bash_profile ]; then echo "here!"else echo "te