mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
476 B
Groff
30 lines
476 B
Groff
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# just
|
|
|
|
> Save and run project-specific commands.
|
|
> More information: <https://manned.org/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|--edit]}}`
|
|
|
|
- List available recipes in the justfile:
|
|
|
|
`just {{[-l|--list]}}`
|
|
|
|
- Print justfile:
|
|
|
|
`just --dump`
|