mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 14:40:37 +08:00
ad4530acd3
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.
33 lines
490 B
ReStructuredText
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
|
|
|
|
|