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

37
pages.ko/windows/comp.md Normal file
View File

@@ -0,0 +1,37 @@
# comp
> 두 파일 또는 파일 집합의 내용을 비교.
> 파일 집합을 비교하려면 와일드카드(*)를 사용.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/comp>.
- 파일을 대화형으로 비교:
`comp`
- 지정된 두 파일 비교:
`comp {{경로\대상\파일1}} {{경로\대상\파일2}}`
- 두 파일 집합 비교:
`comp {{경로\대상\폴더1}}\* {{경로\대상\폴더2}}\*`
- 차이점을 10진수 형식으로 표시:
`comp /d {{경로\대상\파일1}} {{경로\대상\파일2}}`
- 차이점을 ASCII 형식으로 표시:
`comp /a {{경로\대상\파일1}} {{경로\대상\파일2}}`
- 차이점에 대한 줄 번호 표시:
`comp /l {{경로\대상\파일1}} {{경로\대상\파일2}}`
- 대소문자를 구분하지 않고 파일 비교:
`comp /c {{경로\대상\파일1}} {{경로\대상\파일2}}`
- 각 파일의 처음 5줄만 비교:
`comp /n=5 {{경로\대상\파일1}} {{경로\대상\파일2}}`