标签:
</p><p>可是实验时,二者还是有所不同。环境为ubuntu,3.5.0-43-generic #66~precise1-Ubuntu SMP Thu Oct 24 14:55:08 UTC 2013 i686 i686 i386 GNU/Linux。
1 a="" 2 b="" 3 if [ "$a" == "$b" ] 4 then 5 echo "==" 6 else 7 echo "!=" 8 fi若使用"=="。则会报错例如以下:
sh t2.sh
t2.sh: 3: [: unexpected operator
!=
假设使用"="。则通过:
[arthur@E430 ~/workspace/test]$sh t2.sh
==
linux下"="号与"=="号
标签:
原文地址:http://www.cnblogs.com/mengfanrong/p/5130914.html