shell參數中的特殊字元

來源:互聯網
上載者:User
這兩天閑著,玩一下NB,從Shell下手,碰到點有意思的,順便記下。

寫了個簡單的指令碼test_2,輸出使用者的參數:
#!/bin/sh
if [ $# -lt 2 ] ; then
 echo "You need 2 paramerters at less!"
 exit 0
fi
ONE="$1"
TWO="$2"
echo "Your paramerters are:"
echo $1
echo $2

:wq儲存;
chmod +x test_2 使其可執行

發現了一點有趣的,不同參數的執行結果:
(1)無參數:
#./test_2
You need 2 paramerters at less!

(2)
#./test_2 /43 ./#$@&
#Your paramerters are:
/43
./#

---------------------------------------------------------------
沒有出現提示符,似乎該命令還沒有執行完
/*
 *猜測可能是因為最後一個字元“&”有什麼特別含義,暫不清楚
 */
直接斷行符號:
[1] Done ./test_2 /43 ./#${@}

(3)
#./test_2 /43 ./#$@
#Your paramerters are:
/43
./#
#

----------------------------------------------------------------
和上次輸出一樣,不過出現命令提示字元,說明命令已執行完畢

(4)
#./test_2 /43 ./#$
#Your paramerters are:
/43
./#$
#

----------------------------------------------------------------
好像是正常的輸出,去掉一個“@”就正常了,奇怪。

(5)
#./test_2 /43 ./#
#Your paramerters are:
/43
./#
#

----------------------------------------------------------------
還是正常的。
“./test_2 /43 ./” 與“./test_2 /43 .”均正常。

(6)
#./test_2 /43 ./#$&
#Your paramerters are:
/43
./#$

-----------------------------------------------------------------
一樣沒有出現提示符,“./test_2 /43 ./#$”則正常。似乎可以作此結論:“&”等待使用者輸入才能繼續執行,至於要輸入什麼,不得而知。

(7)
#./test_2 /43 ./$@
#Your paramerters are:
/43
./
#
-----------------------------------------------------------------
與情況(3)對比,似乎可以發現“$@”被忽略了。

(8)
#./test_2 /43 ./$4@
#Your paramerters are:
/43
./@
#
-----------------------------------------------------------------
太奇怪了,頭都大了。

這東西,我估計是shell在傳遞參數時,對某些特殊字元做了處理,使它們不能直接作為參數,這也許很正常。我大概是沒看源碼,不知道規則,大驚小怪而已。

相關文章

聯繫我們

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