Commit d420ba2a authored by Heikki Linnakangas's avatar Heikki Linnakangas

Escape greater than and less than characters in docs.

Susanne Ebrecht and me
parent 5735efee
...@@ -406,7 +406,7 @@ PostgreSQL documentation ...@@ -406,7 +406,7 @@ PostgreSQL documentation
To create a backup of a single-tablespace local database and compress To create a backup of a single-tablespace local database and compress
this with <productname>bzip2</productname>: this with <productname>bzip2</productname>:
<screen> <screen>
<prompt>$</prompt> <userinput>pg_basebackup -D - -Ft | bzip2 > backup.tar.bz2</userinput> <prompt>$</prompt> <userinput>pg_basebackup -D - -Ft | bzip2 &gt; backup.tar.bz2</userinput>
</screen> </screen>
(this command will fail if there are multiple tablespaces in the (this command will fail if there are multiple tablespaces in the
database) database)
......
...@@ -105,7 +105,7 @@ $ initdb ...@@ -105,7 +105,7 @@ $ initdb
$ vi $PGDATA/postgresql.conf $ vi $PGDATA/postgresql.conf
$ for DBNAME in template0 template1 postgres; do $ for DBNAME in template0 template1 postgres; do
postgres --single -F -O -c exit_on_error=true $DBNAME \ postgres --single -F -O -c exit_on_error=true $DBNAME \
< /usr/local/pgsql/share/contrib/sepgsql.sql > /dev/null &lt; /usr/local/pgsql/share/contrib/sepgsql.sql &gt; /dev/null
done done
</screen> </screen>
......
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