001、
[root@PC1 test]# a=10 [root@PC1 test]# echo $a 10 [root@PC1 test]# echo $b [root@PC1 test]# [ -z $a ] ## 如果变量没有被赋值,则返回真,否则返回假 [root@PC1 test]# echo $? ## a赋值为10, 因此返回假 1 [root@PC1 test]# [ -z $b ] [root@PC1 test]# echo $? ## 变量b没有被赋值,返回真 0 [root@PC1 test]# b="dsf" [root@PC1 test]# echo $b dsf [root@PC1 test]# [ -z $b ] ## 变量b被赋值,返回假 [root@PC1 test]# echo $? 1
标签:变量,##,PC1,echo,linux,test,root,赋值 From: https://www.cnblogs.com/liujiaxin2018/p/16967644.html