HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

just — Save and run project-specific commands. More information: <https://manned.org/just>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandrunspecificsaveandclijustproject

Problem

How to use the just command: Save and run project-specific commands. More information: <https://manned.org/just>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/just

Revisions (0)

No revisions yet.