Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 382 Bytes

08-suppress.md

File metadata and controls

31 lines (22 loc) · 382 Bytes

suppress

run:
    echo 'hello world'

という Makefile を実行すると

$ make
echo 'hello world'
hello world``bash

となって冗長だったりする。実行コマンドの表示を抑制したくなりますよね そんな時は、@付きにすると

run:
    @echo 'hello world'
$ make
hello world

便利