Suppose I have the following command to be parallelized:
my_command --file <(my | pipeline)
Now, I would like to parallelize in specific chunks:
my | pipeline | parallel --spreadstdin my_command --file <(parallel's stdin)
How would I accomplish this redirection with gnu parallel?
--fifo
and--cat
. If the question is re-opened I will post an answer. – Ole Tange Apr 11 '19 at 12:18