Feature request: Enable possibility of colored stderr output

2020-09-13 Thread A M
Hello, I would like to submit a feature request/suggestion on Bash. (I was told submitting to this mailing list was the right way to do it.) Feature request: Enable possibility of colored stderr output. It would be really neat to have functionality that stderr could be output in a different

Re: Feature request: Enable possibility of colored stderr output

2020-09-13 Thread Oğuz
13 Eylül 2020 Pazar tarihinde A M yazdı: > Hello, I would like to submit a feature request/suggestion on Bash. (I was > told submitting to this mailing list was the right way to do it.) > > Feature request: Enable possibility of colored stderr output. > > It would be really neat to have

Re: Bash-5.1-beta available

2020-09-13 Thread Andreas Schwab
On Sep 10 2020, Chet Ramey wrote: > qqq. Fixed a bug that could cause backslashes quoting double quotes in here > document bodies to not be removed when expanding the body. Are you sure about this? My reading of POSIX says that a backslash before a double quote should not be removed, as

Re: Bash-5.1-beta available

2020-09-13 Thread Robert Elz
Date:Sun, 13 Sep 2020 14:29:15 -0400 From:Chet Ramey Message-ID: | The specific construct is | | P=A | cat <

Bug in aclocal.m4 / configure ? BASH_STRUCT_WEXITSTATUS_OFFSET

2020-09-13 Thread Andreas K . Hüttel
Hi, in aclocal.m4 (and thus also configure), the test for BASH_STRUCT_WEXITSTATUS_OFFSET contains /* crack s */ for (i = 0; i < (sizeof(s) - 8); i++) Shouldnt this be /* crack s */ for (i = 0; i < (sizeof(s) * 8); i++) (* instead of -), see attached trivial patch? The minus sign

Re: Bash-5.1-beta available

2020-09-13 Thread Robert Elz
Date:Sun, 13 Sep 2020 14:21:23 +0200 From:Andreas Schwab Message-ID: <87imchg94s@igel.home> | My reading of POSIX says that a backslash | before a double quote should not be removed, as double quotes are not | special in here docs. That would be a correct

Re: Bash-5.1-beta available

2020-09-13 Thread Andreas Schwab
You have a regression here though: cat <

Re: Bash-5.1-beta available

2020-09-13 Thread Chet Ramey
On 9/13/20 8:21 AM, Andreas Schwab wrote: > On Sep 10 2020, Chet Ramey wrote: > >> qqq. Fixed a bug that could cause backslashes quoting double quotes in here >> document bodies to not be removed when expanding the body. > > Are you sure about this? My reading of POSIX says that a