On Sat, Mar 8, 2025, at 3:05 PM, Kaz Kylheku wrote:
>
> $ echo {a..{z,y}}
> a..z a..y
>
> Is this documented? I would expect it to produce
>
> {a..z} {a..y}
This is fixed in the devel branch:
$ git -C ~/src/bash checkout -q c3ca11424d2ae66cafa2f931b008dfb728e209a5
$ { ~/src/bash/configure && make; } >/dev/null 2>&1; echo "$?"
0
$ ./bash -c 'echo {a..{z,y}}'
{a..z} {a..y}
https://git.savannah.gnu.org/cgit/bash.git/commit/?h=devel&id=c3ca11424d2ae66cafa2f931b008dfb728e209a5
--
vq
