Hmmm. That doesn't seem right. Actually, the original statement is correct.

Sent from my iPad

> On Mar 1, 2014, at 11:29 AM, Dave Yost <d...@yost.com> wrote:
> 
> In http://www.gnu.org/software/bash/manual/bashref.html#GNU-Parallel
> 
> Where you say
> ls *.gz | parallel -j+0 "zcat {} | bzip2 >{.}.bz2 && rm {}"
> This will recompress all files in the current directory with names ending in 
> .gz using bzip2, running one job per CPU (-j+0) in parallel.
> 
> it should be
> ls *.gz | parallel -j+0 "zcat {} | bzip2 >{.}.bz2 && rm {}"
> This will recompress all files in the current directory with names ending in 
> .bz2 using bzip2, running one job per CPU (-j+0) in parallel.
> 
> 
> Also, you should mention what the +0 does.

Reply via email to