fish-shell/doc_src/cmds/not.rst
Johannes Altmanninger ad4530acd3 docs synopses: add space before ellipsis
This matches the style in man(1) (except that we use the … ligature).

A previous iteration did the reverse (never use a space before the
ellipsis). That would be a smaller change.
2022-01-16 14:05:47 +01:00

33 lines
490 B
ReStructuredText

.. _cmd-not:
not - negate the exit status of a job
=====================================
Synopsis
--------
**not** *COMMAND* [*options* ...]
Description
-----------
``not`` negates the exit status of another command. If the exit status is zero, ``not`` returns 1. Otherwise, ``not`` returns 0.
Example
-------
The following code reports an error and exits if no file named spoon can be found.
::
if not test -f spoon
echo There is no spoon
exit 1
end