Revert change that prevented ellipses from looking like ../.

This commit is contained in:
Bruce Momjian 2010-03-31 23:51:41 +00:00
parent c2af244021
commit d93e4d819c

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.146 2010/03/31 23:39:15 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.147 2010/03/31 23:51:41 momjian Exp $ -->
<chapter id="backup"> <chapter id="backup">
<title>Backup and Restore</title> <title>Backup and Restore</title>
@ -611,7 +611,7 @@ cp -i pg_xlog/00000001000000A900000065 /mnt/server/archivedir/00000001000000A900
add a command to test for the existence of the archive file. For add a command to test for the existence of the archive file. For
example, something like: example, something like:
<programlisting> <programlisting>
archive_command = 'test ! -f ... %f &amp;&amp; cp %p ... %f' archive_command = 'test ! -f .../%f &amp;&amp; cp %p .../%f'
</programlisting> </programlisting>
works correctly on most Unix variants. works correctly on most Unix variants.
</para> </para>