Re: CHLD traps run at the same time

2015-01-25 Thread Linda Walsh
Chet Ramey wrote: It's not a bug. The only guarantee is that the CHLD trap gets run once for each child bash reaps. Bash gets SIGCHLD, reaps as many terminated child processes as it can, then runs the CHLD trap once for each terminated child when it's no longer in a signal handler context. I

Re: Extending brace expansion

2015-01-25 Thread Eduardo A . Bustamante López
> I read somewhere that GNU was moving to C++. > > But I can rewrite this in C. > > --- Brian You forgot to CC the list. Also, consider the following: - bash has one maintainer only - the code you provided is just an example, it's not a patch against bash, so, further work is needed to unders

Re: bug with case conversion of UTF-8 characters

2015-01-25 Thread Chet Ramey
On 1/22/15 9:43 AM, Stephane Chazelas wrote: > Bash Version: 4.3 > Patch Level: 30 > Release Status: release > > (Debian unstable amd64) > > $ LC_ALL=tr_TR.UTF-8 bash -c 'typeset -l a; a=İ; echo $a' | hd > 69 b0 0a |i..| > 0003 > $ a=İ LC_AL

which paradigms does bash support

2015-01-25 Thread garegin16
As a programming language which paradigms does bash support. Declarative, procedural, imperative?