Whatever you do, don’t panic!
Posts tagged linux
Colorful make output
Dec 4th
This handy piece of code colors errors and warnings in make output.
(put it in your .bash_profile)
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[: ]/ s%$pathpat%$ccyellow&$ccend%g”
return ${PIPESTATUS[0]}
}
{
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[: ]/ s%$pathpat%$ccyellow&$ccend%g”
return ${PIPESTATUS[0]}
}
via shawnwilsher.com
An alternative would be to install colormake and use that instead of the normal make command.
Linuxwochen Eisenstadt 2008
Apr 29th
On Mai the 30th & 31st the Austrian “Linuxwochen” will again hit my former university in Eisenstadt.
Look ahead for some very interesting talks by several highly skilled people.
One event I’d especially like to draw your attention to is Oliver’s pice about “Linux Server Experience with VServer” on Fr. the 30th. at 17:15 hours.
I’d be happy (and I’m sure, Olli even more) to see a lot of people attending this great event, listening to the talks held there and discuss open source solutions with us










