mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
24 lines
363 B
Markdown
24 lines
363 B
Markdown
# just
|
|
|
|
> Save and run project-specific commands.
|
|
> More information: <https://github.com/casey/just>.
|
|
|
|
- Run a recipe specified in the justfile:
|
|
|
|
`just {{recipe}}`
|
|
|
|
- Initialize new justfile in project root:
|
|
|
|
`just --init`
|
|
|
|
- Edit justfile in the default editor:
|
|
|
|
`just -e`
|
|
|
|
- List available recipes in the justfile:
|
|
|
|
`just -l`
|
|
|
|
- Print justfile:
|
|
|
|
`just --dump`
|