Linux Shell 中的反引號,單引號,雙引號

來源:互聯網
上載者:User

標籤:位置   標準輸出   roo   空格   插入   oda   oca   enter鍵   雙引號   

反引號位 (`) 位於鍵盤的Tab鍵的上方、1鍵的左方。注意與單引號(‘)位於Enter鍵的左方的區別。
  在Linux中起著命令替換的作用。命令替換是指shell能夠將一個命令的標準輸出插在一個命令列中任何位置。
  如下,shell會執行反引號中的date命令,把結果插入到echo命令顯示的內容中。
  [[email protected] sh]# echo The date is `date`
  The date is 2011年 03月 14日 星期一 21:15:43 CST
  
  單引號、雙引號用於使用者把帶有空格的字串賦值給變數事的分界符。
  [[email protected] sh]# str="Today is Monday"
  [[email protected] sh]# echo $str
  Today is Monday
  如果沒有單引號或雙引號,shell會把空格後的字串解釋為命令。
  [[email protected] sh]# str=Today is Monday
  bash: is: command not found
  單引號和雙引號的區別。單引號告訴shell忽略所有特殊字元,而雙引號忽略大多數,但不包括$、\、`。
  [[email protected] sh]# testvalue=100
  [[email protected] sh]# echo ‘The testvalue is $testvalue‘
  The testvalue is $testvalue
  [[email protected] sh]# echo "The testvalue is $testvalue"
  The testvalue is 100

Linux 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.