making STDERR more visible

Interesting 'mod' for making STDERR more visible: https://github.com/sickill/stderred

stderred.png
 
Isn't it a bad idea to tie userland shared libs into syscalls?

I like the idea a lot, but I don't think this is the way to do it.

Fonz
 
Interesting idea, but I don't think it should be implemented as userland library. Isn't this almost equivalent to use a wrapper like hilite or to modify the default shell for a user?
 
If You use ZSH shell, then this line in ~/.zshrc seems to do even better job.

[CMD=""]exec 2>>( while read X; do print "\e[91m${X}\e[0m" > /dev/tty; done & )[/CMD]
 
Seems like you could use named pipes and just show stderr in a different window. But I haven't tried it.
 
Back
Top