#!/bin/bash TARGET="" if [ $1 ] then TARGET=$1 fi make -j 8 $TARGET 2>&1 | tee build.out | grep --color -iE "error|warning|undefined reference to|$" exit $?