Commit c709c607 authored by Peter Eisentraut's avatar Peter Eisentraut

doc: Consistently use = sign in long options synopses

This was already the predominant form in man pages and help output.
parent 0be22457
...@@ -316,7 +316,7 @@ PostgreSQL documentation ...@@ -316,7 +316,7 @@ PostgreSQL documentation
<literal>foo</literal> in a database named <literal>foo</literal> in a database named
<literal>xyzzy</literal>: <literal>xyzzy</literal>:
<screen> <screen>
<prompt>$ </prompt><userinput>clusterdb --table foo xyzzy</userinput> <prompt>$ </prompt><userinput>clusterdb --table=foo xyzzy</userinput>
</screen></para> </screen></para>
</refsect1> </refsect1>
......
...@@ -263,7 +263,7 @@ PostgreSQL documentation ...@@ -263,7 +263,7 @@ PostgreSQL documentation
<varlistentry> <varlistentry>
<term><option>-D <replaceable class="parameter">datadir</replaceable></option></term> <term><option>-D <replaceable class="parameter">datadir</replaceable></option></term>
<term><option>--pgdata <replaceable class="parameter">datadir</replaceable></option></term> <term><option>--pgdata=<replaceable class="parameter">datadir</replaceable></option></term>
<listitem> <listitem>
<para> <para>
Specifies the file system location of the database configuration files. If Specifies the file system location of the database configuration files. If
...@@ -275,7 +275,7 @@ PostgreSQL documentation ...@@ -275,7 +275,7 @@ PostgreSQL documentation
<varlistentry> <varlistentry>
<term><option>-l <replaceable class="parameter">filename</replaceable></option></term> <term><option>-l <replaceable class="parameter">filename</replaceable></option></term>
<term><option>--log <replaceable class="parameter">filename</replaceable></option></term> <term><option>--log=<replaceable class="parameter">filename</replaceable></option></term>
<listitem> <listitem>
<para> <para>
Append the server log output to Append the server log output to
...@@ -288,7 +288,7 @@ PostgreSQL documentation ...@@ -288,7 +288,7 @@ PostgreSQL documentation
<varlistentry> <varlistentry>
<term><option>-m <replaceable class="parameter">mode</replaceable></option></term> <term><option>-m <replaceable class="parameter">mode</replaceable></option></term>
<term><option>--mode <replaceable class="parameter">mode</replaceable></option></term> <term><option>--mode=<replaceable class="parameter">mode</replaceable></option></term>
<listitem> <listitem>
<para> <para>
Specifies the shutdown mode. <replaceable>mode</replaceable> Specifies the shutdown mode. <replaceable>mode</replaceable>
......
...@@ -558,7 +558,7 @@ rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_d ...@@ -558,7 +558,7 @@ rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_d
run using: run using:
<programlisting> <programlisting>
psql --username postgres --file script.sql postgres psql --username=postgres --file=script.sql postgres
</programlisting> </programlisting>
The scripts can be run in any order and can be deleted once they have The scripts can be run in any order and can be deleted once they have
......
...@@ -396,7 +396,7 @@ PostgreSQL documentation ...@@ -396,7 +396,7 @@ PostgreSQL documentation
To reindex the table <literal>foo</literal> and the index To reindex the table <literal>foo</literal> and the index
<literal>bar</literal> in a database named <literal>abcd</literal>: <literal>bar</literal> in a database named <literal>abcd</literal>:
<screen> <screen>
<prompt>$ </prompt><userinput>reindexdb --table foo --index bar abcd</userinput> <prompt>$ </prompt><userinput>reindexdb --table=foo --index=bar abcd</userinput>
</screen></para> </screen></para>
</refsect1> </refsect1>
......
...@@ -430,7 +430,7 @@ PostgreSQL documentation ...@@ -430,7 +430,7 @@ PostgreSQL documentation
<literal>xyzzy</literal>, and analyze a single column <literal>xyzzy</literal>, and analyze a single column
<literal>bar</literal> of the table for the optimizer: <literal>bar</literal> of the table for the optimizer:
<screen> <screen>
<prompt>$ </prompt><userinput>vacuumdb --analyze --verbose --table 'foo(bar)' xyzzy</userinput> <prompt>$ </prompt><userinput>vacuumdb --analyze --verbose --table='foo(bar)' xyzzy</userinput>
</screen></para> </screen></para>
</refsect1> </refsect1>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment