Problem : How do fix when /dev/stderr is pointing to /dev/null, because of which, all err messages are redirected to […]
Tag: stderr
Linux : Rotating log buffer with output redirection
Problem : I have an application that prints errors on stderr. I can redirect that output to a file with […]
How to tee to stderr? (multiple sinks in one pipeline)
Problem : some_source | (tee /dev/stderr | sink_1) 2>&1 | sink_2 Seems to fail. How to do it right without […]