Bug#1059400: kubetail: Broken on Debian Bookworm ("syntax error near unexpected token") due to Bash 5.2 incompatibility

2023-12-24 Thread Joan Bruguera Micó
Package: kubetail Version: 1.6.5-2 Severity: important Tags: upstream Dear Maintainer, Unfortunately, attempting to use kubetail fails on Debian Bookworm. In particular, any trivial use reports a "syntax error", as follows: ``` $ kubetail nginx Will tail 2 logs...

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

2020-04-03 Thread Joan Bruguera Micó
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 > >

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

2020-04-01 Thread Joan Bruguera Micó
. Therefore, ignore my previous email and consider this solved. Regards, - Joan Bruguera On Thu, 2 Apr 2020 at 04:15, 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 > >

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)