just.1
command runner that reads recipes from a justfile
TLDR
Run default recipe
$ just
Run specific recipe$ just [recipe]
Run recipe with arguments$ just [recipe] [arg1] [arg2]
List available recipes$ just --list
Show recipe source$ just --show [recipe]
SYNOPSIS
just [options] [recipe...] [arguments...]
DESCRIPTION
just is a command runner that reads recipes from a justfile. It provides a convenient way to save and run project-specific commands. Syntax is inspired by make but focused on running commands rather than building. Recipes can be written in any language.
PARAMETERS
--list
List available recipes.--show recipe
Show recipe source code.-f, --justfile file
Use specified justfile.--choose
Select recipe interactively.--dry-run
Print commands without executing.-q, --quiet
Suppress output.