Sometimes we have to do something like this:
$ generate_things > tmp1 $ generate_other_things > tmp2 $ process_both tmp1 tmp2
With bash, it’s possible to avoid creating these temporary files:
$ process_both <(generate_things) <(generate_other_things)
:)