bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bash-5.2-alpha available


From: Oğuz
Subject: Re: Bash-5.2-alpha available
Date: Sat, 22 Jan 2022 12:09:03 +0300

On Fri, Jan 21, 2022 at 6:28 PM Chet Ramey <chet.ramey@case.edu> wrote:
> a. Fixed a bug that assigned a value to the variable name supplied as an
>    argument to `wait -p' when there were no jobs.

This doesn't seem like it's fixed

$ bash -c 'echo $BASH_VERSION; unset foo; for i in 1 2 3; do wait -p
foo; declare -p foo; done'
5.2.0(13)-alpha
declare -- foo="0"
declare -- foo="1638738736"
declare -- foo="1638738960"

> e. Here-document parsing now handles $'...' and $"..." quoting when reading 
> the
>    here-document body.

And I don't think this is very useful with aposthropes remaining

$ cat <<X
$'\n'
X
'
'

Regards



reply via email to

[Prev in Thread] Current Thread [Next in Thread]