Redirecting process substitutions
If you intend to use bash redirections and process substitutions together, they might look cryptic.
In this article I would like to debunk that confusion a little bit.
Let's start with
$ > >(echo fine) 2> >(echo error)
fine
Here the effect is the sam...
loganlee.hashnode.dev3 min read