The unary logical operator is !.
Logical NOT: !<operand>
The ! operator returns 1 (true) if the operand is 0, otherwise it returns 0 (false).
The operand can be any expression evaluating to an absolute expression.
See the following listing for an example of the unary logical operator.
!(8<5) ; = $1 (TRUE)