‐‐‐ 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:
> >
> > >
‐‐‐ 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 th
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