Re: process substitution bug or difference from bash 4.4

2020-03-26 Thread Chet Ramey
On 3/25/20 10:35 AM, Valentin Lab wrote: > Hi, > > I have encountered an issue when running some bash code from 4.4 on a bash > 5 ... I've managed to pinpoint the exact issue on my end. Thanks for the report. This is a bug in bash-5.0, and I will have a fix in the next devel branch push. Chet -

process substitution bug or difference from bash 4.4

2020-03-25 Thread Valentin Lab
Hi, I have encountered an issue when running some bash code from 4.4 on a bash 5 ... I've managed to pinpoint the exact issue on my end. Here are 2 functions that are quite similar, except the usage of "{ ; }" around the "cat": ## ouch() { cat < <(echo bar) cat "$1"