windows/*: add and update Korean translation (#14641)

Co-authored-by: Chooooo <contact@choo.ooo>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
코드싸이
2024-11-06 04:21:01 +09:00
committed by GitHub
parent 29d6bd2563
commit 60276104db
47 changed files with 1064 additions and 3 deletions

33
pages.ko/windows/cd.md Normal file
View File

@@ -0,0 +1,33 @@
# cd
> 현재 작업 중인 디렉토리를 표시하거나 다른 디렉토리로 이동.
> PowerShell에서는 이 명령이 `Set-Location`의 별칭입니다. 이 문서는 Command Prompt(`cmd`) 버전의 `cd`를 기반으로 합니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/cd>.
- PowerShell의 동등한 명령에 대한 문서 보기:
`tldr set-location`
- 현재 디렉토리의 경로 표시:
`cd`
- 같은 드라이브의 특정 디렉토리로 이동:
`cd {{경로\대상\디렉토리}}`
- 다른 [d]rive의 특정 디렉토리로 이동:
`cd /d {{C}}:{{경로\대상\디렉토리}}`
- 현재 디렉토리의 상위 디렉토리로 이동:
`cd ..`
- 현재 사용자의 홈 디렉토리로 이동:
`cd %userprofile%`
- 현재 드라이브의 루트로 이동:
`cd \`