mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
7a5823fd60
darcs-hash:20060919145203-ac50b-bc87b8f5e6a18395e4bc3e364da4a40ad97850e7.gz
16 lines
489 B
Text
16 lines
489 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 aliases 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.
|