mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
25 lines
441 B
Markdown
25 lines
441 B
Markdown
![]() |
# just
|
||
|
|
||
|
> Sla op en run project-specifieke commands uit.
|
||
|
> Meer informatie: <https://github.com/casey/just>.
|
||
|
|
||
|
- Voer een recept uit dat gespecificeerd is in een justfile:
|
||
|
|
||
|
`just {{recept}}`
|
||
|
|
||
|
- Initialiseer nieuwe justfile in de beginmap van het project:
|
||
|
|
||
|
`just --init`
|
||
|
|
||
|
- Pas de justfile aan in de standaard tekstbewerker:
|
||
|
|
||
|
`just -e`
|
||
|
|
||
|
- Toon een lijst met beschikbare recepten in de justfile:
|
||
|
|
||
|
`just -l`
|
||
|
|
||
|
- Print de justfile:
|
||
|
|
||
|
`just --dump`
|