mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
2e5821c17d
darcs-hash:20060612165137-ac50b-0281941e35c5f8b619460f67d24a89caec475815.gz
14 lines
506 B
Text
14 lines
506 B
Text
\section exit exit - exit the shell.
|
|
|
|
\subsection exit-synopsis Synopsis
|
|
<tt>exit [STATUS]</tt>
|
|
|
|
\subsection exit-description Description
|
|
|
|
The <tt>exit</tt> builtin causes fish to exit. If <tt>STATUS</tt> is
|
|
supplied, it will be converted to an integer and used as the exit
|
|
code. Otherwise the exit code will be that of the last command executed.
|
|
|
|
If exit is called while sourcing a file (using the <a
|
|
href="#source">.</a> builtin) the rest of the file will be skipped,
|
|
but the shell itself will not exit.
|