mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-28 01:15:26 +02:00
25 lines
398 B
Markdown
25 lines
398 B
Markdown
![]() |
# just
|
||
|
|
||
|
> 프로젝트별 명령을 저장하고 실행.
|
||
|
> 더 많은 정보: <https://github.com/casey/just>.
|
||
|
|
||
|
- justfile에서 지정된 레시피 실행:
|
||
|
|
||
|
`just {{레시피}}`
|
||
|
|
||
|
- 프로젝트 루트에 새 justfile 초기화:
|
||
|
|
||
|
`just --init`
|
||
|
|
||
|
- 기본 편집기로 justfile 편집:
|
||
|
|
||
|
`just -e`
|
||
|
|
||
|
- justfile에 있는 사용 가능한 레시피 나열:
|
||
|
|
||
|
`just -l`
|
||
|
|
||
|
- justfile 출력:
|
||
|
|
||
|
`just --dump`
|