LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

just.1

command runner that reads recipes from a justfile

TLDR

Run default recipe
$ just
copy
Run specific recipe
$ just [recipe]
copy
Run recipe with arguments
$ just [recipe] [arg1] [arg2]
copy
List available recipes
$ just --list
copy
Show recipe source
$ just --show [recipe]
copy

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.

SEE ALSO

make(1), task(1)

Copied to clipboard
Kai