Question on piping commands from stdin atop 20110822

2011-09-08 Thread Rhys Ulerich
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

2011-09-08 Thread Jay Hacker
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 >