2018-12-17 01:39:33 +00:00
|
|
|
not - negate the exit status of a job
|
2019-01-03 04:10:47 +00:00
|
|
|
=====================================
|
2018-12-17 01:39:33 +00:00
|
|
|
|
2018-12-18 01:58:24 +00:00
|
|
|
Synopsis
|
|
|
|
--------
|
2018-12-16 21:08:41 +00:00
|
|
|
|
|
|
|
not COMMAND [OPTIONS...]
|
2018-12-18 01:58:24 +00:00
|
|
|
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2018-12-19 02:44:30 +00:00
|
|
|
Description
|
2019-01-03 04:10:47 +00:00
|
|
|
-----------
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2018-12-19 20:02:45 +00:00
|
|
|
``not`` negates the exit status of another command. If the exit status is zero, ``not`` returns 1. Otherwise, ``not`` returns 0.
|
2018-12-16 21:08:41 +00:00
|
|
|
|
|
|
|
|
2018-12-19 02:44:30 +00:00
|
|
|
Example
|
2019-01-03 04:10:47 +00:00
|
|
|
-------
|
2018-12-16 21:08:41 +00:00
|
|
|
|
|
|
|
The following code reports an error and exits if no file named spoon can be found.
|
|
|
|
|
2018-12-19 03:14:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
if not test -f spoon
|
|
|
|
echo There is no spoon
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
2018-12-16 21:08:41 +00:00
|
|
|
|