mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
dd90b4ece4
darcs-hash:20070118170034-ac50b-f10d79a1aed0e91d350db13187965bf2f5c45b7e.gz
16 lines
491 B
Text
16 lines
491 B
Text
\section builtin builtin - run a builtin command
|
|
|
|
\subsection builtin-synopsis Synopsis
|
|
<tt>builtin BUILTINNAME [OPTIONS...]</tt>
|
|
|
|
\subsection builtin-description Description
|
|
|
|
- <tt>-n</tt> or <tt>--names</tt> List the names of all defined builtins
|
|
|
|
Prefixing a command with the word 'builtin' forces fish to ignore any functions with the same name.
|
|
|
|
\subsection builtin-example Example
|
|
|
|
<tt>builtin jobs</tt>
|
|
|
|
causes fish to execute the jobs builtin, even if a function named jobs exists.
|