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.
if not {each} attr.name{operator} {"value"}
# ne
list jobs if not stat = "c"
list jobs if stat not "c"