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?