mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 20:43:39 +00:00
22 lines
386 B
Plaintext
22 lines
386 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, dos]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# CD
|
|
|
|
> Change the current working directory.
|
|
> More information: <https://help.fdos.org/en/hhstndrd/command/cd.htm>.
|
|
|
|
- Go to the specified directory:
|
|
|
|
`CD {{PATH\TO\DIRECTORY}}`
|
|
|
|
- Go up to the parent of the current directory:
|
|
|
|
`CD ..`
|
|
|
|
- Go to the root directory of the current drive:
|
|
|
|
`CD \`
|