1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 05:02:10 +02:00
tldr/pages.ko/common/rake.md
코드싸이 fd7d9f925b
common/r*: add Korean translation (#14644)
* common/r*: add Korean translation

* Update rtv.md

* Update pages.ko/common/rtv.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-11-07 10:35:14 +09:00

504 B

rake

Ruby용 Make와 유사한 프로그램. rake의 작업은 Rakefile에 지정됩니다. 더 많은 정보: https://ruby.github.io/rake.

  • default Rakefile 작업 실행:

rake

  • 특정 작업 실행:

rake {{작업}}

  • 동시에 n개의 작업 병렬 실행 (기본값은 CPU 코어 수 + 4):

rake --jobs {{n}}

  • 특정 Rakefile 사용:

rake --rakefile {{경로/대상/Rakefile}}

  • 다른 디렉토리에서 rake 실행:

rake --directory {{경로/대상/폴더}}