How can I highlight the warning and error lines in the make output?

Have a look at colormake, found here $ apt-cache search colormake colormake – simple wrapper around make to colorize output Using the power of google, I also found this bash-function. make() { pathpat=”(/[^/]*)+:[0-9]+” ccred=$(echo -e “\033[0;31m”) ccyellow=$(echo -e “\033[0;33m”) ccend=$(echo -e “\033[0m”) /usr/bin/make “$@” 2>&1 | sed -E -e “/[Ee]rror[: ]/ s%$pathpat%$ccred&$ccend%g” -e “/[Ww]arning[: ]/ … Read more

GNU Make silent by default

If you define the target .SILENT:, then make will not echo anything. It’s usually best to guard the definition, so you can easily turn it off: ifndef VERBOSE .SILENT: endif Now by default, make will print nothing, but if you run make VERBOSE=1, it will print. Note that despite the statement in the manual claiming … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)