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/coffee.md Normal file
View File

@@ -0,0 +1,24 @@
# coffee
> Coffee Script를 실행하거나 JavaScript로 컴파일합니다.
> 더 많은 정보: <https://coffeescript.org#cli>.
- 스크립트 실행:
`coffee {{경로/파일.coffee}}`
- JavaScript로 컴파일 하거나 같은 이름의 파일로 저장합니다:
`coffee --compile {{경로/파일.coffee}}`
- JavaScript로 컴파일 하거나 주어진 출력 파일로 저장합니다:
`coffee --compile {{경로/파일.coffee}} --output {{경로/파일.js}}`
- 대화형 REPL 실행:
`coffee --interactive`
- 스크립트의 변화를 보거나 다시 실행합니다:
`coffee --watch {{경로/파일.coffee}}`