Re: Typo in Bash Manual

2019-03-24 Thread Chet Ramey
On 3/23/19 2:54 PM, Craig Miles wrote: > Hi all: > > There's some inadvertently repeated text in doc/bashref.info which is > propagating into all manuals generated therefrom. Lines 1900 and 1901 in > the v5.0 version. Thanks for the report. This was fixed in the devel branch about two months ago

Typo in Bash Manual

2019-03-23 Thread Craig Miles
Hi all: There's some inadvertently repeated text in doc/bashref.info which is propagating into all manuals generated therefrom. Lines 1900 and 1901 in the v5.0 version. the rules described below (*note Pattern Matching::). If the pattern matches If the pattern matches a trailing portion of the

Typo in bash manual: "QUANTUMP"

2017-06-29 Thread Keith Thompson
In the documentation for the "mapfile" builtin command: '-C' Evaluate CALLBACK each time QUANTUMP lines are read. The '-c' option specifies QUANTUM. "QUANTUMP" should be "QUANTUM". In the latest sources cloned from git://git.savannah.gnu.org/bash.git, this occurs in: b

Re: typo in bash manual

2014-03-02 Thread Chris Down
On 2014-03-02 06:30:07 -0800, Ryan Cunningham wrote: > Apparently I am not reading it wrong. Read my previous e-mail to this > list on this thread. If you had paid attention and looked at my reply more closely, you would have noticed that the e-mail was not even addressed to you, it was addressed

Re: typo in bash manual

2014-03-02 Thread Ryan Cunningham
Apparently I am not reading it wrong. Read my previous e-mail to this list on this thread. Sent from my iPad > On Mar 1, 2014, at 8:55 PM, Chris Down wrote: > >> On 2014-03-01 11:29:03 -0800, Dave Yost wrote: >> In http://www.gnu.org/software/bash/manual/bashref.html#GNU-Parallel >> >> Where

Re: typo in bash manual

2014-03-01 Thread Chris Down
On 2014-03-01 11:29:03 -0800, Dave Yost 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, r

Re: typo in bash manual

2014-03-01 Thread Ryan Cunningham
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 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 {}"

typo in bash manual

2014-03-01 Thread Dave Yost
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