I recently found a post that gave a solution to output stderr text of a different color for Linux (bash)
They created the following bash script script
#!/bin/bash
{ $* 2>&1>&3|sed 's,.*,\x1B[33m&\x1B[0m,'>&2;} 3>&1
this causes yellow text to be output when it is from stderr. stdout still prints the same color.
The script was saved in a directory on $ PATH called color. This allows me to run the script using make or scons, and it will hi-lite all the text from stderr in yellow. (can make the text red by changing 33 m to 31 m)
color make CPU=x64
This is very useful for finding compilation errors.
Is there a similar script that can be used for Windows cmd shell?
Note. I have sed installed on my windows computer if this is useful.