Command-Line

macos - 終端刪除以“$”開頭的文件路徑部分

  • April 2, 2018

我正在嘗試操作目錄中的文件,其文件路徑包含以“$”開頭的目錄,例如:

git rm path/to/file/$dollarsigndirectory/anotherdirectory/file.format

我收到以下錯誤:

fatal: pathspec 'path/to/file//anotherdirectory/file.format' did not match any files

編輯:我已經嘗試過使用$ Dollarsigndirectory ,它只是說沒有一個名為 ’ $ Dollarigndirectory’的目錄

我試圖排除故障,但無法弄清楚為什麼“$”會使目錄不可見。謝謝!

您可以用單引號將路徑括起來,這樣 $ 就不會被擴展。

引用自:https://unix.stackexchange.com/questions/434947