别名

别名允许你用其他名称来调用配方:

alias b := build

build:
  echo 'Building!'
$ just b
build
echo 'Building!'
Building!