1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 16:35:24 +02:00

cd: update outdated zh_TW translations (#16816)

This commit is contained in:
kira134679 2025-06-28 12:24:09 +08:00 committed by GitHub
parent eb4d82b383
commit ef7ba07723
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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