not - reverse the exit status of a command
SYNOPSIS
DESCRIPTION
not
converts a zero (0) return status to 255, and any nonzero
return status to 0.
True becomes false and false becomes true.
not
is used to test a command for not true or false.
EXAMPLE
$ true ; echo $?
0
$ not true ; echo $?
255