1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/common/cd.md

29 lines
370 B
Markdown
Raw Permalink Normal View History

# cd
> 更改当前工作目录。
> 更多信息:<https://manned.org/cd>.
- 转到指定目录:
2022-08-20 02:44:49 +08:00
`cd {{路径/到/目录}}`
- 转到当前目录的父目录:
`cd ..`
- 转到当前用户的主(home)目录:
`cd`
2022-08-20 02:44:49 +08:00
- 转到指定用户的主(home)目录:
2022-08-20 02:44:49 +08:00
`cd ~{{用户名}}`
- 转到刚才选择的目录:
`cd -`
2022-10-04 15:03:38 +08:00
- 转到根目录:
`cd /`