linux——如何判断一个字符串为空;[和[[的区别;

root@pts/4 $ cat /tmp/lc-7.sh
#!/usr/bin/env bash

str=$1

if [[ "$str" = "" ]]
then
        echo "1 empty"
fi

if [[ "$str" = " " ]] #这里真的要特别注意,我又一次把" "当成了空串,导致"$str" = " "判断一直为假,无法执行后面的then语句;一定要注意," "是包含了一个空格的非空字符串!
then echo "2 empty" fi if [[ "$str" = "0" ]] then echo "3 empty" fi if [[ "$str" = "00" ]] then echo "4 empty" fi if [[ "$str" -eq 0 ]] then echo "5 empty" fi if [[ "$str" -eq 000 ]] then echo "6 empty" fi if [[ "$str" -eq '0' ]] then echo "7 empty" fi if [[ "$str" -eq '00' ]] then echo "8 empty" fi ## show results root@pts/4 $ bash /tmp/lc-7.sh 1 empty 5 empty 6 empty 7 empty 8 empty

把“  ”当成了空字符串,其实这是一个包含了空格的字符串

 

 

 

 

【和【【的区别:

【是命令;

【【是关键字;

https://www.jianshu.com/p/508e94e4479f

posted @ 2020-08-16 02:15  Eric-Shen  阅读(598)  评论(0编辑  收藏  举报