Hi Ole,Neither of the two solutions you suggested are working for me. I am using GNU parallel version 20101125 (Is that too old)?When I tried bash shell, it only gave <contentsof file>/output/Is it because the version of parallel is outdated? (I did not think so, since nested parallel seemed supported when I downloaded this)and am using CentosAlso I did read the examples on the man page and thought I had implemented things correctly based on the examples.Thanks in advance for all help
> > I am constantly trying to make the man page better. > > Have you read the examples in the man page? (In particular this: > http://www.gnu.org/software/parallel/man.html#example__use_multiple_inputs_in_one_command > ) > > If you have not: What could I do to make you read that? > > If you have and you still do not know how fix your problem the answer > below. Please help re-write the section of the manual so you would > have known what to do. > > parallel -k echo {1}/output/{2} :::: filename <(seq 19 22) > > or > > parallel -k -a filename -a <(seq 19 22) echo {1}/output/{2} > > You may need to use bash to get the <() to work. > > > /Ole
