shell 中 test ([])比較字串 x"$variable"的使用

來源:互聯網
上載者:User
shell 中 字串比較 x”$variable”的使用

本文章參考stackoverflow上Why do shell script comparisons often use x$VAR = xyes? 不使用雙引號“”,不使用首碼x 不使用雙引號“”,使用首碼x 使用雙引號“”,不使用首碼x 使用雙引號“”,使用首碼x

shell 中 字串比較 xvariable的使用 不使用雙引號不使用首碼x 不使用雙引號使用首碼x 使用雙引號不使用首碼x 使用雙引號使用首碼x

不使用雙引號“”,不使用首碼x

有變數SHELL_VAR未定義($SHELL_VAR為空白)
if test $SHELL_VAR = yes; then --> if test = yes; then
顯然是有語法錯誤的,test 丟失參數。 不使用雙引號“”,使用首碼x

$SHELL_VAR值為空白
if test x$SHELL_VAR = yes; then --> if test x = yes; then
這樣貌似看著是沒有問題的。
但是假如此時$SHELL_VAR值為” yes”,注意yes前面有一個空格,那麼:
if test x$SHELL_VAR = yes; then --> if test x yes = yes; then
顯然這樣也是有語法錯誤的,test有兩個參數x 和 1。 使用雙引號“”,不使用首碼x

$SHELL_VAR值為空白
if test "$SHELL_VAR" = "yes"; then --> if test "" = "yes"; then
$SHELL_VAR值為” yes”
if test "$SHELL_VAR" = "yes"; then --> if test " yes" = "yes"; then
貌似使用“”把變數包起來就沒有問題了。
但是假如此時$SHELL_VAR值為“-n”或者 “-f”
if test "$SHELL_VAR" = "yes"; then --> if test "-f" = "yes"; then
那麼此時“-f” 是有二義性的,是作為test命令的option還是test的argument。 使用雙引號“”,使用首碼x

$SHELL_VAR值為空白
if test x"$SHELL_VAR" = x"yes"; then --> if test x"" = x"yes"; then
$SHELL_VAR值為” yes”
if test x"$SHELL_VAR" = x"yes"; then --> if test x" yes" = x"yes"; then
$SHELL_VAR值為“-n”或者 “-f”
if test x"$SHELL_VAR" = x"yes"; then --> if test x"-f" = x"yes"; then

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.