diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/clusterdb.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_ctl-ref.sgml | 6 | ||||
-rw-r--r-- | doc/src/sgml/ref/pgupgrade.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/reindexdb.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/vacuumdb.sgml | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/clusterdb.sgml b/doc/src/sgml/ref/clusterdb.sgml index c13d74853eb..67582fd6e69 100644 --- a/doc/src/sgml/ref/clusterdb.sgml +++ b/doc/src/sgml/ref/clusterdb.sgml @@ -316,7 +316,7 @@ PostgreSQL documentation <literal>foo</literal> in a database named <literal>xyzzy</literal>: <screen> -<prompt>$ </prompt><userinput>clusterdb --table foo xyzzy</userinput> +<prompt>$ </prompt><userinput>clusterdb --table=foo xyzzy</userinput> </screen></para> </refsect1> diff --git a/doc/src/sgml/ref/pg_ctl-ref.sgml b/doc/src/sgml/ref/pg_ctl-ref.sgml index 11444e85a83..ea0a6353d8e 100644 --- a/doc/src/sgml/ref/pg_ctl-ref.sgml +++ b/doc/src/sgml/ref/pg_ctl-ref.sgml @@ -263,7 +263,7 @@ PostgreSQL documentation <varlistentry> <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> <para> Specifies the file system location of the database configuration files. If @@ -275,7 +275,7 @@ PostgreSQL documentation <varlistentry> <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> <para> Append the server log output to @@ -288,7 +288,7 @@ PostgreSQL documentation <varlistentry> <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> <para> Specifies the shutdown mode. <replaceable>mode</replaceable> diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml index 96851933cc5..d46a730f662 100644 --- a/doc/src/sgml/ref/pgupgrade.sgml +++ b/doc/src/sgml/ref/pgupgrade.sgml @@ -558,7 +558,7 @@ rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_d run using: <programlisting> -psql --username postgres --file script.sql postgres +psql --username=postgres --file=script.sql postgres </programlisting> The scripts can be run in any order and can be deleted once they have diff --git a/doc/src/sgml/ref/reindexdb.sgml b/doc/src/sgml/ref/reindexdb.sgml index 713efc099be..36df949c957 100644 --- a/doc/src/sgml/ref/reindexdb.sgml +++ b/doc/src/sgml/ref/reindexdb.sgml @@ -396,7 +396,7 @@ PostgreSQL documentation To reindex the table <literal>foo</literal> and the index <literal>bar</literal> in a database named <literal>abcd</literal>: <screen> -<prompt>$ </prompt><userinput>reindexdb --table foo --index bar abcd</userinput> +<prompt>$ </prompt><userinput>reindexdb --table=foo --index=bar abcd</userinput> </screen></para> </refsect1> diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml index 92b8984b7a6..4f6fa0d7085 100644 --- a/doc/src/sgml/ref/vacuumdb.sgml +++ b/doc/src/sgml/ref/vacuumdb.sgml @@ -430,7 +430,7 @@ PostgreSQL documentation <literal>xyzzy</literal>, and analyze a single column <literal>bar</literal> of the table for the optimizer: <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> </refsect1> |