fish-shell/doc_src/source.txt

27 lines
983 B
Text
Raw Normal View History

2013-08-14 15:55:15 +00:00
\section source source - evaluate contents of file.
\subsection source-synopsis Synopsis
2013-08-14 15:55:15 +00:00
<tt>source FILENAME [ARGUMENTS...]</tt>
2010-09-18 02:18:26 +00:00
\subsection source-description Description
2013-08-14 15:55:15 +00:00
\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
environment variables 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.
2013-08-14 15:55:15 +00:00
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,
2013-08-14 15:55:15 +00:00
\c source exits with a non-zero status.
\subsection source-example Example
2013-08-14 15:55:15 +00:00
<tt>source ~/.config/fish/config.fish</tt> causes fish to re-read its initialization file.