码迷,mamicode.com
首页 > 系统相关 > 详细

linux下"="号与"=="号

时间:2016-01-14 18:43:21      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

《鸟哥的linux私房菜》基础学习篇P382中说,在bash中"="与"=="是同样的,都代表推断是否相等,仅仅只是因为其它语言一般写法使用"=="。因此建议使用后者。

</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下&quot;=&quot;号与&quot;==&quot;号

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/5130914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!