fish-shell/doc_src/cmds/exit.rst
Johannes Altmanninger 2a98b7a593 docs synopsis: make all placeholder arguments uppercase
man(1) uses lowercase placeholders but we usually don't.  Additionally,
the new synopsis autoformatting only recognizes placeholders if they
are uppercase. Use uppercase for all placeholders.
2022-01-19 22:56:41 +08:00

21 lines
510 B
ReStructuredText

.. _cmd-exit:
.. program::exit
exit - exit the shell
=====================
Synopsis
--------
.. synopsis::
exit [CODE]
Description
-----------
**exit** is a special builtin that causes the shell to exit. Either 255 or the *CODE* supplied is used, whichever is lesser.
Otherwise, the exit status will be that of the last command executed.
If exit is called while sourcing a file (using the :ref:`source <cmd-source>` builtin) the rest of the file will be skipped, but the shell itself will not exit.