aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/builtin.txt
blob: 4c465ef18bf5d2cf0ef0057357adda373c42f234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\section builtin builtin - run a builtin command

\subsection builtin-synopsis Synopsis
\fish{synopsis}
builtin BUILTINNAME [OPTIONS...]
\endfish

\subsection builtin-description Description

`builtin` forces the shell to use a builtin command, rather than a function or program.

The following parameters are available:

- `-n` or `--names` List the names of all defined builtins


\subsection builtin-example Example

\fish
builtin jobs
# executes the jobs builtin, even if a function named jobs exists
\endfish