shell 轉義字符的寫法


在鏈接中,往往會遇到含有‘&'字符的情形,需要轉義方能使用。

以下是它的寫法樣例,錯誤的寫法勿要再犯!!

 1 鏈接樣例: http://my.example.cn/show/details/htdocs&urfile.txt
 2 wget http://my.example.cn/show/details/htdocs\&urfile.txt #正確寫法0
 3 
 4 # ###### 請注意轉義符號的實際寫法!!!! 堅決不能把轉義符包含在引號內!!! ##########
 5 HttpFileName=http://my.example.cn/show/details/htdocs\&${FileName} #正確寫法1
 6 HttpFileName=http://my.example.cn/show/details/htdocs'&'${FileName} #正確寫法2
 7 HttpFileName=http://my.example.cn/show/details/htdocs"&"${FileName} #正確寫法3
 8 HttpFileName="http://my.example.cn/show/details/htdocs&"${FileName} #正確寫法4  9 HttpFileName='http://my.example.cn/show/details/htdocs&'${FileName} #正確寫法5
10

11
# 以下是錯誤的寫法,勿再犯!!!!
12 HttpFileName='http://my.example.cn/show/details/htdocs\&'${FileName} #錯誤寫法1
13 HttpFileName="http://my.example.cn/show/details/htdocs\&"${FileName} #錯誤寫法2
14 HttpFileName=http://my.example.cn/show/details/htdocs'\&'${FileName} #錯誤寫法3
15 HttpFileName=http://my.example.cn/show/details/htdocs"\&"${FileName} #錯誤寫法4

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM