[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: typo in bash manual
From: |
Ryan Cunningham |
Subject: |
Re: typo in bash manual |
Date: |
Sat, 1 Mar 2014 17:17:42 -0800 |
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 <Dave@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.