Linux shell中比較操作符“==”與“-eq”對比

來源:互聯網
上載者:User

標籤:shell編程   比較操作符   bash編程   字串操作   參數設定   

在Linux shell編程中,經常會用到判斷字串是否相等,可用於判斷字串是否相等的操作符有‘-eq’(相等), ‘-ne’(不等於), ‘-lt’(小於), ‘-le’(小於或等於), ‘-gt’(大於)或‘-ge’(大於或等於),以及=,==,!=,<,>。

在bash指南中,字母操作符和符號操作符的兩端的參數英語運算式不相同,符號操作符用的是string,字母操作符用的是arg。

# http://www.gnu.org/software/bash/manual/bashref.html


  • string1==string2


  • string1=string2

  • True if the strings are equal. ‘=’ should be used with the test command for POSIX conformance.


  • string1!=string2

  • True if the strings are not equal.


  • string1<string2

  • True ifstring1sorts beforestring2lexicographically.


  • string1>string2

  • True ifstring1sorts afterstring2lexicographically.


  • arg1OParg2

  • OP is one of ‘-eq’, ‘-ne’, ‘-lt’, ‘-le’, ‘-gt’, or ‘-ge’. These arithmetic binary operators return true ifarg1is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal toarg2, respectively.Arg1andarg2may be positive or negative integers.

在實際編程中發現,當用字母操作符,雖然效果與符號操作符相同,但會產生一個錯誤提示“[[: arg2: syntax error: operand expected (error token is "arg2")”。

如原文為

[[ "$1" -eq "" ]] && echo "delete all spaces and comments of specialized file, using with [email protected] filename" && exit 1

修改為

[[ "$1" == "" ]] && echo "delete all spaces and comments of specialized file, using with [email protected] filename" && exit 1

就不再提示了。

附帶一個實用小指令碼,用途:grep掉空格和注釋符(#),簡單實用。

#!/bin/bash   # delete all spaces and comments of specialized file, using with [email protected] filename    [[ "$1" == "" ] && echo "delete all spaces and comments of specialized file, using with [email protected] filename" && exit 1    grep -v \# $1 | grep -v ^$

添加到作業系統中:

cat > delsc.sh << eof   #!/bin/bash    # delete all spaces and comments of specialized file, using with [email protected] filename    [[ "\$1" -== "" ]] && echo "delete all spaces and comments of specialized file, using with \[email protected] filename" && exit 1    grep -v \# \$1 | grep -v ^$    eof    chmod +x ./delsc.sh    \mv delsc.sh /usr/local/bin/delsc    which delsc    cat /usr/local/bin/delsc

用法:

delsc filename


本文出自 “通訊,我的最愛” 部落格,請務必保留此出處http://dgd2010.blog.51cto.com/1539422/1542048

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.