107 releases (18 stable)
1.13.0 | Jan 25, 2023 |
---|---|
1.9.0 | Nov 25, 2022 |
1.3.0 | Jul 25, 2022 |
1.1.2 | Mar 31, 2022 |
0.2.23 | Nov 18, 2016 |
#42 in Command line utilities
10,000 downloads per month
400KB
14K
SLoC
just
is a handy way to save and run project-specific commands.
Commands are stored in a file called justfile
or Justfile
with syntax inspired by make
:
build:
cc *.c -o main
# test everything
test-all: build
./test --all
# run a specific test
test TEST: build
./test --test {{TEST}}
just
produces detailed error messages and avoids make
's idiosyncrasies, so debugging a justfile is easier and less surprising than debugging a makefile.
It works on Linux, MacOS, and Windows.
Read more on GitHub.
Dependencies
~6–12MB
~209K SLoC