mirror of https://github.com/CrimsonTome/tldr.git
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`
|