在鏈接中,往往會遇到含有‘&'字符的情形,需要轉義方能使用。
以下是它的寫法樣例,錯誤的寫法勿要再犯!!
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
