The not operator represents a not equal to condition. This reverses the true sense of the condition in a selection criteria. The #, no, and ne operators perform the same function as not.
Syntax
if not {each} attr.name {operator} {"value"} |
Synonym(s)
# ne |
Example(s)
list jobs if not stat = "c" |
list jobs if stat not "c" |
See Also