mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
af61ea1325
We are using only :: in a synopsis for fishscript examples given of the command being documented.
18 lines
497 B
ReStructuredText
18 lines
497 B
ReStructuredText
.. _cmd-exit:
|
|
.. program::exit
|
|
|
|
exit - exit the shell
|
|
=====================
|
|
|
|
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.
|