Is it possible to distribute STDIN over parallel processes?
- by Erik
Given the following example input on STDIN:
foo
bar bar
baz
===
qux
bla
===
def
zzz yyy
Is it possible to split it on the delimiter (in this case '===') and feed it over stdin to a command running in parallel?
So the example input above would result in 3 parallel processes (for example a command called do.sh) where each instance received a…