co*: add Korean translation (#14059)

* co*: add Korean trnaslation

* fix: fix filename
This commit is contained in:
HoJeong Im
2024-10-08 17:23:24 +09:00
committed by GitHub
parent 674596b164
commit 7979f194b3
9 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# combine
> 두 파일의 줄에서 설정 작업 수행.
> 출력되는 줄의 순서는 첫 번째 파일의 줄 순서에 따라 결정됨.
> 참고: `diff`.
> 더 많은 정보: <https://joeyh.name/code/moreutils/>.
- 지정된 두 파일 모두에 있는 라인을 출력:
`combine {{경로/대상/파일1}} and {{경로/대상/파일2}}`
- 첫 번째 파일에는 있지만, 두 번째 파일에는 없는 줄을 출력:
`combine {{경로/대상/파일1}} not {{경로/대상/파일2}}`
- 지정된 파일 중 하나에 있는 줄을 출력:
`combine {{경로/대상/파일1}} or {{경로/대상/파일2}}`
- 지정된 파일 중 정확히 하나에만 있는 줄을 출력:
`combine {{경로/대상/파일1}} xor {{경로/대상/파일2}}`