Re: Obscure issue with process substitution since bash-5.0.016 upgrade

2020-04-03 Thread Joan Bruguera Micó
Thanks for your attention and the provided reduced patch. I can confirm that, applied over bash-5.0.16, this solves my issue, both on the test case as well as the bigger application from which it was extracted. Regards, - Joan Bruguera On Thu, 2 Apr 2020 at 23:20, Chet Ramey wrote: > > On

Re: Obscure issue with process substitution since bash-5.0.016 upgrade

2020-04-02 Thread Chet Ramey
On 4/1/20 10:15 PM, Joan Bruguera Micó wrote: > I'm having a problem with a script that used to work, which I reduced > to the following test case: > > #!/bin/bash > > function docat() { > for x in 1 2 3 ; do true; done > cat "$@" > } > > for x in $(seq 25); do >

Re: Obscure issue with process substitution since bash-5.0.016 upgrade

2020-04-01 Thread Joan Bruguera Micó
Apologies, since after reading the other bug report more thoroughly, I understood that a fix for that issue has actually already been commited to the devel branch at this point, and indeed, I can also not reproduce my issue on the latest snapshot. So it looks like this has already been addressed.

Obscure issue with process substitution since bash-5.0.016 upgrade

2020-04-01 Thread Joan Bruguera Micó
I'm having a problem with a script that used to work, which I reduced to the following test case: #!/bin/bash function docat() { for x in 1 2 3 ; do true; done cat "$@" } for x in $(seq 25); do docat <(echo a) <(echo a) <(echo a) <(echo a) <(echo a)