Question on piping commands from stdin atop 20110822
If I understand parallel correctly, I expect the following two commands to give identical results: cat <
Re: Question on piping commands from stdin atop 20110822
Rhys, If you use ::: then parallel doesn't read commands from stdin (the first process gets stdin). The idiomatic way to do it is: cat < wrote: > If I understand parallel correctly, I expect the following two > commands to give identical results: > > cat < echo foo > echo bar > echo baz > HERE >
