mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 09:02:08 +02:00
cd: add page to windows (#3893)
Co-authored-by: Owen Voke <owzie123@gmail.com>
This commit is contained in:
parent
e54c562361
commit
63b56d944f
1 changed files with 20 additions and 0 deletions
20
pages/windows/cd.md
Normal file
20
pages/windows/cd.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# cd
|
||||||
|
|
||||||
|
> Displays the name of or changes the current working directory.
|
||||||
|
> More information: <https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cd>.
|
||||||
|
|
||||||
|
- Go to a directory in the same drive:
|
||||||
|
|
||||||
|
`cd {{path/to/directory}}`
|
||||||
|
|
||||||
|
- Display the name of the current directory:
|
||||||
|
|
||||||
|
`cd`
|
||||||
|
|
||||||
|
- Go up to the parent of the current directory:
|
||||||
|
|
||||||
|
`cd ..`
|
||||||
|
|
||||||
|
- Go to a directory in a different drive:
|
||||||
|
|
||||||
|
`cd {{path/to/directory}} /d`
|
Loading…
Add table
Reference in a new issue