mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:42:09 +02:00

* korean translation cmake cmark cmp code coffee column comm command * update some words * update * update cmake.md delete \n * change whitespace
629 B
629 B
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}}