Hacker News new | ask | show | jobs
by e12e 2063 days ago
I imagine an easy/intuitive way to set up FIFOs for stdout/stderr with redirection, maybe? A way to say: for this following section, I want stderr to go trough "|sort -n|logger -t DEBUG -f -" and standard out to go through (... Other pipeline)?
1 comments

command 2> >(sort -n|logger -t DEBUG -f -) | other pipeline