- @preles shell脚本,是什么意思

时间:2013-05-10 14:38:12

标签: linux shell makefile busybox

请参阅busybox makefile

中的以下代码
scripts/config/conf: scripts/config/Makefile
     $(MAKE) -C scripts/config conf
     -@if [ ! -f .config ] ; then \
       cp $(CONFIG_DEFCONFIG) .config; \
     fi

我的问题是if子句之前的 - @ 是什么?这真是令人沮丧。

提前感谢!

1 个答案:

答案 0 :(得分:2)

再次阅读make documentation

上的GNU recipes

at sign @禁用回显。

minus sign -禁用错误停止。

这是make约定(不是shell约定)。