mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:05:39 +08:00
885d16fcd6
darcs-hash:20061031152316-ac50b-e68db9853d6e9461a0c054f1ea290704ccfc0a31.gz
20 lines
554 B
Plaintext
20 lines
554 B
Plaintext
\section source . - evaluate contents of file.
|
|
|
|
\subsection source-synopsis Synopsis
|
|
<tt>. FILENAME</tt>
|
|
|
|
\subsection source-description Description
|
|
|
|
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, etc., will remain.
|
|
|
|
\subsection source-example Example
|
|
|
|
<tt>. ~/.fish</tt>
|
|
|
|
causes fish to reread its initialization file.
|
|
|