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 co
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 functiona
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 dou
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 r
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 backslash
You have a regression here though:
cat <
Date:Sun, 13 Sep 2020 14:29:15 -0400
From:Chet Ramey
Message-ID:
| The specific construct is
|
| P=A
| cat <
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 mak