merge mutiple pages(cmake to command) : Add Korean Translation (#3595)

* korean translation

cmake
cmark
cmp
code
coffee
column
comm
command

* update some words

* update

* update cmake.md

delete \n

* change whitespace
This commit is contained in:
JJByun
2019-11-23 00:25:18 +09:00
committed by Proscream
parent 3b31dfcc59
commit 61f5b84720
8 changed files with 146 additions and 0 deletions

24
pages.ko/common/comm.md Normal file
View File

@@ -0,0 +1,24 @@
# comm
> 두 파일의 공통되는 줄을 선택하거나 거절합니다.
> 두 파일 모두 정렬되어 있어야합니다.
- 세 개의 탭으로 구분된 열을 생성합니다: 첫 번째 파일에는 줄만, 두 번째 파일에서는 줄들과 공통 줄:
`comm {{파일1}} {{파일2}}`
- 두 파일의 공통된 줄들만 출력:
`comm -12 {{파일1}} {{파일2}}`
- `stdin`으로 읽어드린 하나의 파일과 나머지 파일의 공통된 줄들만 출력:
`cat {{파일1}} | comm -12 - {{파일2}}`
- 첫 번째 파일에서만 줄을 가져오고 결과를 세 번째 파일에 저장:
`comm -23 {{파일1}} {{파일2}} > {{파일1_only}}`
- 파일이 정렬되지 않은 경우 두 번째 파일에서만 줄을 출력합니다:
`comm -13 <(sort {{파일1}}) <(sort {{파일2}})`