在C#中,有一個逐字字符串,這樣,shell中是否存在忽略轉義字符的方法?
string c = "hello \t world"; // hello world
string d = @"hello \t world"; // hello \t world
我是新來的shell腳本,有沒有在外殼類似的方法?
因爲我有很多文件夾的名稱,如「服裝&配件>服裝>運動裝」,我想知道是否有一個簡單的方法來處理轉義字符而不寫這麼多。
test.sh
director="Apparel & Accessories > Clothing > Activewear"
# any action to escape spaces, &, > ???
hadoop fs -ls $director
爲外殼,你可以附上引號來代替轉義特殊字符之內的全部文本。 – mah
單引號,用「此處文檔」,實際上,你可以放在引號製表符和換行不使用轉義序列 – technosaurus