Is it even achievable?
I would like the output from a command’s stderr to be rendered in a different color than stdout (for example, in red).
I ne
A simple solution to color stdout in red is to pipe it through grep:
grep
program | grep .
This should not require installing anything, as grep should be already installed everywhere.
Taken from Dennis’s comment on superuser.com.