aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/source.txt
blob: 8798e9d9f027885349ecde549e18d8bff935d649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
\section source source - evaluate contents of file.

\subsection source-synopsis Synopsis
<tt>source FILENAME [ARGUMENTS...]</tt>

\subsection source-description Description

\c source evaluates the commands of the specified file in the current
shell. This is different from starting a new process to perform the
commands (i.e. <tt>fish < FILENAME</tt>) since the commands will be
evaluated by the current shell, which means that changes in
shell variables will affect the current shell. If additional arguments are
specified after the file name, they will be inserted into the $argv
variable.

If no file is specified, or if the file name '-' is used, stdin will
be read.

The return status of \c source is the return status of the last job to
execute. If something goes wrong while opening or reading the file,
\c source exits with a non-zero status.

\c . (a single period) is an alias for the \c source command. The use of \c .
is deprecated in favour of \c source, and \c . will be removed in a future
version of fish.

\subsection source-example Example

<tt>source ~/.config/fish/config.fish</tt> causes fish to re-read its initialization file.