标签:
==========1 混淆的-n -z=================
#/bin/bash
a="abc" if [ -z $a ] then echo "-z $a : string length is zero" else echo "-z $a : string length is not zero" fi
if [ -n $a ] then echo "-n $a : string length is not null" else echo "-n $a : string length is null" fi
执行demo.sh返回如下
-z abc : string length is not zero // -z判断为空为真,而a=abc 因此范围false -n abc : string length is not null // -n判断不为空为真,而a=abc 确实不为空
注意事项:在脚本demo.sh中if [ -z $a ]和if [ -n $a ]中的$a应该加上“”,以防止不必要的麻烦
============================附加内容===================================
a="abc" [ $a ] 就是判断a是不是不为空 不为空则为true
if [ $a ] then echo "$a : string is not empty" else echo "$a : string is empty" fi
返回结果
abc : string is not empty
======================收工=====================
标签:
原文地址:http://www.cnblogs.com/horizonli/p/5251952.html