|
|||||
operator | not, ! | ||||
Related Syntax |
Summary |
Boolean
True or false. |
(not | !) test-expression
A logical operator that simply negates its operand. The resulting expression returns false if the operand evaluated to true, and vice versa.
Usage example:
do when a < b and not (c < d) ... done
Related Syntax true, false |
---- |