2006-10-31 23:23:16 +08:00
|
|
|
\section source . - evaluate contents of file.
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
\subsection source-synopsis Synopsis
|
2007-04-23 05:19:47 +08:00
|
|
|
<tt>. FILENAME [ARGUMENTS...]</tt>
|
2005-09-20 21:31:55 +08:00
|
|
|
|
2010-09-18 10:18:26 +08:00
|
|
|
\subsection source-description Description
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
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
|
2007-04-23 05:19:47 +08:00
|
|
|
environment variables, etc., will remain. 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.
|
2005-09-20 21:31:55 +08:00
|
|
|
|
2007-10-05 22:58:08 +08:00
|
|
|
The return status of . is the return status of the last job to
|
|
|
|
execute. If something goes wrong while opening or reading the file,
|
|
|
|
. exits with a non-zero status.
|
|
|
|
|
2005-09-20 21:31:55 +08:00
|
|
|
\subsection source-example Example
|
|
|
|
|
|
|
|
<tt>. ~/.fish</tt>
|
|
|
|
|
|
|
|
causes fish to reread its initialization file.
|
|
|
|
|