安静配方
配方名称可在前面加上 @,可以在每行反转行首 @ 的含义:
@quiet:
echo hello
echo goodbye
@# all done!
现在只有以 @ 开头的行才会被回显:
$ j quiet
hello
goodbye
# all done!
Shebang 配方默认是安静的:
foo:
#!/usr/bin/env bash
echo 'Foo!'
$ just foo
Foo!
在 Shebang 配方名称前面添加 @,使 just 在执行配方前打印该配方:
@bar:
#!/usr/bin/env bash
echo 'Bar!'
$ just bar
#!/usr/bin/env bash
echo 'Bar!'
Bar!