0
$ volume=vol1
$ echo $volume
vol1
$ volume="vol1"
$ echo $volume
vol1
$ volume='vol1'
$ echo $volume
vol1
以上在bash腳本中有什麼區別? 所有的都是一樣的嗎?bash字符串有/無引號和單/雙引號
$ volume=vol1
$ echo $volume
vol1
$ volume="vol1"
$ echo $volume
vol1
$ volume='vol1'
$ echo $volume
vol1
以上在bash腳本中有什麼區別? 所有的都是一樣的嗎?bash字符串有/無引號和單/雙引號
複製到http://stackoverflow.com/questions/6697753/difference-between-single-and-double-quotes-in-bash。考慮到[關閉](https://meta.stackexchange.com/questions/10841/how-should-duplicate-questions-be-handled) – jschnasse