From 66cab2b600a1f3cfa26ee12550b76e4bda423385 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 20 Jun 2011 16:27:51 -0400 Subject: [PATCH] Fix missed use of "cp -i" in an example, per Fujii Masao. Also be more careful about markup: use & not just &. --- doc/src/sgml/backup.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 611e94911a4..17b1b6c35c1 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -530,7 +530,7 @@ tar -cf backup.tar /usr/local/pgsql/data character in the command. The simplest useful command is something like -archive_command = 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' # Unix +archive_command = 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' # Unix archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows which will copy archivable WAL segments to the directory -- 2.39.5