Re: Things that work in bash-5.0 but not work in bash-5.1-rc1

2020-10-07 Thread Chet Ramey
On 10/7/20 3:50 AM, Hyunho Cho wrote: > < bash-5.0 > > > $ read rows cols < <(stty size) These are all the same issue. It's the same thing described in https://lists.gnu.org/archive/html/bug-bash/2020-09/msg00024.html I'll see if there is a partial solution to the issue that doesn't require std

Things that work in bash-5.0 but not work in bash-5.1-rc1

2020-10-07 Thread Hyunho Cho
< bash-5.0 > $ read rows cols < <(stty size) $ echo $rows $cols 19 95 < bash-5.1-rc1 > $ read rows cols < <(stty size) stty: 'standard input': Inappropriate ioctl for device $ echo $rows $cols < empty -