diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-07-06 11:45:13 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-07-06 11:45:13 -0400 |
commit | c7f23494c1103f87bcf1ef7cbfcd626e73edb337 (patch) | |
tree | 7986492776b72dae25a10615076658879440aa03 /doc/src | |
parent | 5ac6b767893281cab5c974b039400118851d548b (diff) | |
download | postgresql-c7f23494c1103f87bcf1ef7cbfcd626e73edb337.tar.gz postgresql-c7f23494c1103f87bcf1ef7cbfcd626e73edb337.zip |
Add \ir command to psql.
\ir is short for "include relative"; when used from a script, the
supplied pathname will be interpreted relative to the input file,
rather than to the current working directory.
Gurjeet Singh, reviewed by Josh Kupershmidt, with substantial further
cleanup by me.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 132a7b354b6..6385c78d1d6 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1626,6 +1626,21 @@ Tue Oct 26 21:40:57 CEST 1999 <varlistentry> + <term><literal>\ir <replaceable class="parameter">filename</replaceable></literal></term> + <listitem> + <para> + The <literal>\ir</> command is similar to <literal>\i</>, but resolves + relative pathnames differently. When executing in interactive mode, + the two commands behave identically. However, when invoked from a + script, <literal>\ir</literal> interprets pathnames relative to the + directory in which the script is located, rather than the current + working directory. + </para> + </listitem> + </varlistentry> + + + <varlistentry> <term><literal>\l</literal> (or <literal>\list</literal>)</term> <term><literal>\l+</literal> (or <literal>\list+</literal>)</term> <listitem> |