1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 22:55:39 +02:00
tldr/pages.zh_TW/common/cd.md

29 lines
389 B
Markdown
Raw Normal View History

# cd
> 切換目前的工作目錄。
> 更多資訊:<https://manned.org/cd>.
- 切換為指定目錄:
`cd {{目錄/完整/路徑}}`
- 切換為目前目錄的上層目錄:
`cd ..`
- 切換為目前使用者的主目錄:
`cd`
- 切換為指定使用者的主目錄:
`cd ~{{使用者名稱}}`
- 切換為之前所在的目錄:
`cd -`
- 切換為根目錄:
`cd /`