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