Created
September 13, 2016 02:07
-
-
Save usagi/76d010a738299e3d315d84dd66c00b7a to your computer and use it in GitHub Desktop.
ninja コマンドなどのビルド完了時に"ベル"を鳴らすなど任意の通知を受けとるらいふはっく ref: http://qiita.com/usagi/items/682cba4951878967bb9c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ninja() | |
| { | |
| env ninja $@ | |
| R=$? | |
| echo -e '\a' | |
| return R | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment