File: source.txt

package info (click to toggle)
fish 1.23.0-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,416 kB
  • ctags: 2,503
  • sloc: ansic: 35,998; sh: 2,818; makefile: 566
file content (28 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (2)
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
\section source . - evaluate contents of file.

\subsection source-synopsis Synopsis
<tt>. FILENAME [ARGUMENTS...]</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. 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 . 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.

\subsection source-example Example

<tt>. ~/.fish</tt>

causes fish to reread its initialization file.