Is there a way to make bash display stderr messages in red color?
command 2> >(while read line; do echo -e "e[01;31m$linee[0m"; done)
Check more discussion of this question.
Is there a way to make bash display stderr messages in red color?
command 2> >(while read line; do echo -e "e[01;31m$linee[0m"; done)
Check more discussion of this question.