not, ! Full Description |
|
Syntax(not | !) test-expression Purpose 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 |