On Mon, Feb 03, 2014 at 01:21:04PM -0700, Stephen Warren wrote:
> From: Stephen Warren
>
> Currently, ! can only be parsed as the first operator in an expression.
> This prevents the following from working:
>
> $ if test ! ! 1 -eq 1; then echo yes; else echo no; fi
> yes
> $ if test ! 1 -eq 2 -
From: Stephen Warren
Currently, ! can only be parsed as the first operator in an expression.
This prevents the following from working:
$ if test ! ! 1 -eq 1; then echo yes; else echo no; fi
yes
$ if test ! 1 -eq 2 -a ! 3 -eq 4; then echo yes; else echo no; fi
yes
Fix this by parsing ! like any
2 matches
Mail list logo