mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Assorted minor fixes for psql metacommand docs.
Document the long forms of \H \i \ir \o \p \r \w ... apparently, we have a long and dishonorable history of leaving out the unabbreviated names of psql backslash commands. Avoid saying "Unix shell"; we can just say "shell" with equal clarity, and not leave Windows users wondering whether the feature works for them. Improve consistency of documentation of \g \o \w metacommands. There's no reason to use slightly different wording or markup for each one.
This commit is contained in:
parent
9a11df1449
commit
ae17897ce8
@ -616,7 +616,8 @@ EOF
|
|||||||
determined at compile time.
|
determined at compile time.
|
||||||
Since the database server uses the same default, you will not have
|
Since the database server uses the same default, you will not have
|
||||||
to specify the port in most cases. The default user name is your
|
to specify the port in most cases. The default user name is your
|
||||||
Unix user name, as is the default database name. Note that you cannot
|
operating-system user name, as is the default database name.
|
||||||
|
Note that you cannot
|
||||||
just connect to any database under any user name. Your database
|
just connect to any database under any user name. Your database
|
||||||
administrator should have informed you about your access rights.
|
administrator should have informed you about your access rights.
|
||||||
</para>
|
</para>
|
||||||
@ -1659,14 +1660,14 @@ Tue Oct 26 21:40:57 CEST 1999
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\g</literal> [ { <replaceable class="parameter">filename</replaceable> | <literal>|</literal><replaceable class="parameter">command</replaceable> } ]</term>
|
<term><literal>\g [ <replaceable class="parameter">filename</replaceable> ]</literal></term>
|
||||||
|
<term><literal>\g [ |<replaceable class="parameter">command</replaceable> ]</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Sends the current query input buffer to the server and
|
Sends the current query input buffer to the server, and
|
||||||
optionally stores the query's output in <replaceable
|
optionally stores the query's output in <replaceable
|
||||||
class="parameter">filename</replaceable> or pipes the output
|
class="parameter">filename</replaceable> or pipes the output
|
||||||
into a separate Unix shell executing <replaceable
|
to the shell command <replaceable
|
||||||
class="parameter">command</replaceable>. The file or command is
|
class="parameter">command</replaceable>. The file or command is
|
||||||
written to only if the query successfully returns zero or more tuples,
|
written to only if the query successfully returns zero or more tuples,
|
||||||
not if the query fails or is a non-data-returning SQL command.
|
not if the query fails or is a non-data-returning SQL command.
|
||||||
@ -1680,7 +1681,7 @@ Tue Oct 26 21:40:57 CEST 1999
|
|||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\gset</literal> [ <replaceable class="parameter">prefix</replaceable> ]</term>
|
<term><literal>\gset [ <replaceable class="parameter">prefix</replaceable> ]</literal></term>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
@ -1744,7 +1745,7 @@ hello 10
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\H</literal></term>
|
<term><literal>\H</literal> or <literal>\html</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Turns on <acronym>HTML</acronym> query output format. If the
|
Turns on <acronym>HTML</acronym> query output format. If the
|
||||||
@ -1758,7 +1759,7 @@ hello 10
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\i <replaceable class="parameter">filename</replaceable></literal></term>
|
<term><literal>\i</literal> or <literal>\include</literal> <replaceable class="parameter">filename</replaceable></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Reads input from the file <replaceable
|
Reads input from the file <replaceable
|
||||||
@ -1777,7 +1778,7 @@ hello 10
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\ir <replaceable class="parameter">filename</replaceable></literal></term>
|
<term><literal>\ir</literal> or <literal>\include_relative</literal> <replaceable class="parameter">filename</replaceable></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
The <literal>\ir</> command is similar to <literal>\i</>, but resolves
|
The <literal>\ir</> command is similar to <literal>\i</>, but resolves
|
||||||
@ -1893,15 +1894,15 @@ lo_import 152801
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\o</literal> [ {<replaceable class="parameter">filename</replaceable> | <literal>|</literal><replaceable class="parameter">command</replaceable>} ]</term>
|
<term><literal>\o</literal> or <literal>\out [ <replaceable class="parameter">filename</replaceable> ]</literal></term>
|
||||||
|
<term><literal>\o</literal> or <literal>\out [ |<replaceable class="parameter">command</replaceable> ]</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Saves future query results to the file <replaceable
|
Arranges to save future query results to the file <replaceable
|
||||||
class="parameter">filename</replaceable> or pipes future results
|
class="parameter">filename</replaceable> or pipe future results
|
||||||
into a separate Unix shell to execute <replaceable
|
to the shell command <replaceable
|
||||||
class="parameter">command</replaceable>. If no arguments are
|
class="parameter">command</replaceable>. If no argument is
|
||||||
specified, the query output will be reset to the standard output.
|
specified, the query output is reset to the standard output.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para><quote>Query results</quote> includes all tables, command
|
<para><quote>Query results</quote> includes all tables, command
|
||||||
@ -1922,7 +1923,7 @@ lo_import 152801
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\p</literal></term>
|
<term><literal>\p</literal> or <literal>\print</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Print the current query buffer to the standard output.
|
Print the current query buffer to the standard output.
|
||||||
@ -2381,7 +2382,7 @@ lo_import 152801
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\r</literal></term>
|
<term><literal>\r</literal> or <literal>\reset</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Resets (clears) the query buffer.
|
Resets (clears) the query buffer.
|
||||||
@ -2541,12 +2542,12 @@ testdb=> <userinput>\setenv LESS -imx4F</userinput>
|
|||||||
|
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>\w</literal> <replaceable class="parameter">filename</replaceable></term>
|
<term><literal>\w</literal> or <literal>\write</literal> <replaceable class="parameter">filename</replaceable></term>
|
||||||
<term><literal>\w</literal> <literal>|</><replaceable class="parameter">command</replaceable></term>
|
<term><literal>\w</literal> or <literal>\write</literal> <literal>|</><replaceable class="parameter">command</replaceable></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Outputs the current query buffer to the file <replaceable
|
Outputs the current query buffer to the file <replaceable
|
||||||
class="parameter">filename</replaceable> or pipes it to the Unix
|
class="parameter">filename</replaceable> or pipes it to the shell
|
||||||
command <replaceable class="parameter">command</replaceable>.
|
command <replaceable class="parameter">command</replaceable>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
@ -2599,7 +2600,7 @@ testdb=> <userinput>\setenv LESS -imx4F</userinput>
|
|||||||
<term><literal>\! [ <replaceable class="parameter">command</replaceable> ]</literal></term>
|
<term><literal>\! [ <replaceable class="parameter">command</replaceable> ]</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Escapes to a separate Unix shell or executes the Unix command
|
Escapes to a separate shell or executes the shell command
|
||||||
<replaceable class="parameter">command</replaceable>. The
|
<replaceable class="parameter">command</replaceable>. The
|
||||||
arguments are not further interpreted; the shell will see them
|
arguments are not further interpreted; the shell will see them
|
||||||
as-is. In particular, the variable substitution rules and
|
as-is. In particular, the variable substitution rules and
|
||||||
|
Loading…
x
Reference in New Issue
Block a user