mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-17 02:35:41 +02:00
just: update collision pages (#10783)
This commit is contained in:
parent
ad49fc9931
commit
0ad23419b1
3 changed files with 29 additions and 18 deletions
24
pages/common/just.1.md
Normal file
24
pages/common/just.1.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# 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`
|
|
@ -1,24 +1,11 @@
|
||||||
# just
|
# just
|
||||||
|
|
||||||
> Save and run project-specific commands.
|
> `just` can refer to multiple commands with the same name.
|
||||||
> More information: <https://github.com/casey/just>.
|
|
||||||
|
|
||||||
- Run a recipe specified in the justfile:
|
- View documentation for the command runner:
|
||||||
|
|
||||||
`just {{recipe}}`
|
`tldr just.1`
|
||||||
|
|
||||||
- Initialize new justfile in project root:
|
- View documentation for the V8 JavaScript runtime:
|
||||||
|
|
||||||
`just --init`
|
`tldr just.js`
|
||||||
|
|
||||||
- Edit justfile in the default editor:
|
|
||||||
|
|
||||||
`just -e`
|
|
||||||
|
|
||||||
- List available recipes in the justfile:
|
|
||||||
|
|
||||||
`just -l`
|
|
||||||
|
|
||||||
- Print justfile:
|
|
||||||
|
|
||||||
`just --dump`
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue