doc: Consistently use = sign in long options synopses
authorPeter Eisentraut
Wed, 19 Oct 2016 16:00:00 +0000 (12:00 -0400)
committerPeter Eisentraut
Wed, 19 Oct 2016 12:48:48 +0000 (08:48 -0400)
This was already the predominant form in man pages and help output.

doc/src/sgml/ref/clusterdb.sgml
doc/src/sgml/ref/pg_ctl-ref.sgml
doc/src/sgml/ref/pgupgrade.sgml
doc/src/sgml/ref/reindexdb.sgml
doc/src/sgml/ref/vacuumdb.sgml

index c13d74853ebbee33d8f277195f3ef31e7d69bd49..67582fd6e6921371680731b2ddc2965ac81b290f 100644 (file)
@@ -316,7 +316,7 @@ PostgreSQL documentation
     foo in a database named
     xyzzy:
 
-clusterdb --table foo xyzzy
+clusterdb --table=foo xyzzy
 
 
  
index 11444e85a83b3984b22aa56b815c8f6241261dc7..ea0a6353d8e2d07ba863f111a555445107f6bf0d 100644 (file)
@@ -263,7 +263,7 @@ PostgreSQL documentation
 
      
       
-      
+      
       
        
         Specifies the file system location of the database configuration files.  If
@@ -275,7 +275,7 @@ PostgreSQL documentation
 
      
       
-      
+      
       
        
         Append the server log output to
@@ -288,7 +288,7 @@ PostgreSQL documentation
 
      
       
-      
+      
       
        
         Specifies the shutdown mode.  mode
index 96851933cc50396f9437bec83161bcc912347406..d46a730f662db5c8d53e8edd32ae459d741362f2 100644 (file)
@@ -558,7 +558,7 @@ rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_d
      run using:
 
 
-psql --username postgres --file script.sql postgres
+psql --username=postgres --file=script.sql postgres
 
 
      The scripts can be run in any order and can be deleted once they have
index 713efc099be946d95ad52676137737340e47a25e..36df949c957ab60f26747e1e503e93bc2d5df458 100644 (file)
@@ -396,7 +396,7 @@ PostgreSQL documentation
     To reindex the table foo and the index
     bar in a database named abcd:
 
-reindexdb --table foo --index bar abcd
+reindexdb --table=foo --index=bar abcd
 
 
  
index 92b8984b7a6a9db9756ab2176b69841f06485e72..4f6fa0d7085cfa8c7ebc297a4860a4e290c0bf47 100644 (file)
@@ -430,7 +430,7 @@ PostgreSQL documentation
     xyzzy, and analyze a single column
     bar of the table for the optimizer:
 
-vacuumdb --analyze --verbose --table 'foo(bar)' xyzzy
+vacuumdb --analyze --verbose --table='foo(bar)' xyzzy