首頁·終端機命令

cd

檔案與目錄

用法

cd [path]

切換 shell 的目前目錄;它是 shell 內建命令,所以指令檔或子 shell 裡的 cd 不會影響外面的 shell。

常用選項

選項含義
-An argument rather than a flag: return to the previous directory
~Your home directory; ~user is another user home
-PMove to the real directory, resolving symlinks
-LKeep the symlinked path (the default)

範例

cd -

Jump back to where you just were.

cd ..

Up one level.

cd

With no argument at all, go home.

搬移、刪除和尋找。有些命令不會再問一次,所以順手加 -i 是在救自己。

怎麼看

  • 方括號 [ ] 表示這部分可以不寫。
  • 省略號 … 表示可以寫多個。
  • 選項區分大小寫——有些命令裡 -r 和 -R 不是一回事。

常見問題

Q. cd 是做什麼的?

切換 shell 的目前目錄;它是 shell 內建命令,所以指令檔或子 shell 裡的 cd 不會影響外面的 shell。

Q. 怎麼寫?

cd [path] —— 方括號表示可以省略的部分。

Q. 值得記的選項有幾個?

這裡列了 4 個,完整列表在 man cd。這條命令屬於檔案與目錄。

相關命令

man 手冊: man cd