在shell中傳遞帶有空格的參數有以下幾種方法:
$ command "parameter with spaces"
$ command parameter\ with\ spaces
$ command=("parameter" "with" "spaces")
$ command parameter with spaces
注意:在shell中,單引號和雙引號的使用有一些差別。單引號會保留參數中的所有特殊字符,而雙引號會將其中的變量展開。因此,如果參數中包含有變量,使用雙引號進行包裹。