Re: Possible regression in 'wait' command

2021-05-13 Thread Robert Elz
Date:Thu, 13 May 2021 23:52:20 +0200 From:Alex fxmbsw7 Ratchev Message-ID: | https://www.ibm.com/support/pages/exit-code-127-means-jobs-command-can-not-be-found-or-executed I have no idea what info that reply was intended to add, but it us not useful. | On Th

Re: Possible regression in 'wait' command

2021-05-13 Thread Alex fxmbsw7 Ratchev
https://www.ibm.com/support/pages/exit-code-127-means-jobs-command-can-not-be-found-or-executed On Thu, May 13, 2021, 23:10 Jonas Alfredsson via Bug reports for the GNU Bourne Again SHell wrote: > Configuration Information: > Machine: x86_64 > OS: linux-gnu > Compiler: gcc > Compilation CFLAGS:

Possible regression in 'wait' command

2021-05-13 Thread Jonas Alfredsson via Bug reports for the GNU Bourne Again SHell
Configuration Information: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -g -O2 -Wno-parentheses -Wno-format-security uname output: Linux 5d99d2eaceed 4.19.0-16-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 GNU/Linux Machine Type: x86_64-pc-linux-gnu Extra info: Docker versi

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Chet Ramey
On 5/13/21 11:07 AM, Adjudicator Darren wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 5:02 PM, Chet Ramey wrote: On 5/13/21 10:31 AM, Adjudicator Darren wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 4:25 PM, Chet Ramey chet.ra...@case.edu wrote: On 5

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Chet Ramey
On 5/13/21 11:07 AM, Adjudicator Darren wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 5:02 PM, Chet Ramey wrote: On 5/13/21 10:31 AM, Adjudicator Darren wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 4:25 PM, Chet Ramey chet.ra...@case.edu wrote: On 5

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 5:02 PM, Chet Ramey wrote: > On 5/13/21 10:31 AM, Adjudicator Darren wrote: > > > ‐‐‐ Original Message ‐‐‐ > > On Thursday, May 13, 2021 4:25 PM, Chet Ramey chet.ra...@case.edu wrote: > > > > > On 5/13/21 9:11 AM, Adjudicator Darr

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Chet Ramey
On 5/13/21 10:31 AM, Adjudicator Darren wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 4:25 PM, Chet Ramey wrote: On 5/13/21 9:11 AM, Adjudicator Darren wrote: What's the bug? this: It's a work in progress. I would use the master branch but apparently there are certain

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 4:25 PM, Chet Ramey wrote: > On 5/13/21 9:11 AM, Adjudicator Darren wrote: > > > What's the bug? this: > > It's a work in progress. > I would use the master branch but apparently there are certain old things that only exist on 'devel'

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Chet Ramey
On 5/13/21 9:11 AM, Adjudicator Darren wrote: What's the bug? this: It's a work in progress. -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRUc...@case.eduhttp://tiswww.cwru.edu/~chet/

new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
What's the bug? this: # if [[ "1" -eq 2 ]]; then echo ; fi bash: [[: \1: syntax error: operand expected (error token is "\1") # if [[ 1 -eq "2" ]]; then echo ; fi bash: [[: \2: syntax error: operand expected (error token is "\2") It works without any quotes though: # if [[ 1 -eq 2 ]]; then echo