Multiple Pages(cat to chgrp) : Add Korean Translation (#3585)

This commit is contained in:
Proscream
2019-11-20 02:12:39 +09:00
committed by Starbeamrainbowlabs
parent b777d86b57
commit f07d3ea376
5 changed files with 112 additions and 0 deletions

23
pages.ko/common/cat.md Normal file
View File

@@ -0,0 +1,23 @@
# cat
> 파일 출력 및 연결.
- 표준출력으로 파일 내용 출력:
`cat {{파일명}}`
- 여러 파일을 대상 파일에 연결:
`cat {{파일명1}} {{파일명2}} > {{대상_파일명}}`
- 대상 파일에 여러 파일 내용 추가:
`cat {{파일명1}} {{파일명2}} >> {{대상_파일명}}`
- 모든 출력 라인에 번호 매기기:
`cat -n {{파일명}}`
- 출력할 수 없는 문자 및 공백 문자 표시 (ASCII가 아닌 경우 `M-`접두사 포함):
`cat -v -t -e {{파일명}}`