some_source | (tee /dev/stderr | sink_1) 2>&1 | sink_2
Seems to fail.
How to do it right without of any temporaries?
some_source | tee >(sink_1) | sink_2
>( ) is process substitution.
>( )