Aliases
Aliases allow recipes to be invoked on the command line with alternative names:
alias b := build
build:
echo 'Building!'
$ just b
echo 'Building!'
Building!
Aliases allow recipes to be invoked on the command line with alternative names:
alias b := build
build:
echo 'Building!'
$ just b
echo 'Building!'
Building!