Logical and: && as in $x && $y; |
If $x is true, evaluate $y and return $y |
If $x is false, don't eval $y and return false |
Logical or: || as in $x || $y; |
If $x is true, don't evaluate $y and return true |
If $x is false, evaluate $y and return $y |
Logical Not: ! as in ! $x; |
Return not $x |
and is same as &&, or the same as || and not is same as ! but lower (indeed lowest) precedence (see Table 2-3 in Llama Book) |