diff options
author | Marc G. Fournier | 1996-10-30 06:19:53 +0000 |
---|---|---|
committer | Marc G. Fournier | 1996-10-30 06:19:53 +0000 |
commit | da7f60c9d3859a7c5392b3fe3ffbd285f0102872 (patch) | |
tree | 84e32c635a9cd5b0ec0510990a6223ebc6df86a9 | |
parent | 552620c8b24a53c13da540fc0d5f316597e9d2e8 (diff) |
Fixes: Incorrect syntax for copy command
By: Erich Stamberger <[email protected]>
-rw-r--r-- | doc/man/copy.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/copy.l b/doc/man/copy.l index 3e401d0b717..943d4219305 100644 --- a/doc/man/copy.l +++ b/doc/man/copy.l @@ -1,14 +1,14 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/doc/man/Attic/copy.l,v 1.3 1996/09/19 20:09:01 scrappy Exp $ +.\" $Header: /cvsroot/pgsql/doc/man/Attic/copy.l,v 1.4 1996/10/30 06:19:53 scrappy Exp $ .TH COPY SQL 11/05/95 Postgres95 Postgres95 .SH NAME copy \(em copy data to or from a class from or to a Unix file. .SH SYNOPSIS .nf \fBcopy\fP [\fBbinary\fP] classname [\fBwith oids\fP] - \fBto\fP|\fBfrom\fP "filename"|\fBstdin\fR|\fBstdout\fR - [\fBusing delimiters\fP delim] + \fBto\fP|\fBfrom '\fPfilename\fB'\fP|\fBstdin\fR|\fBstdout\fR + [\fBusing delimiters '\fPdelim\fB'\fP] .fi .SH DESCRIPTION .BR Copy @@ -24,7 +24,7 @@ copies the internal unique object id (OID) for each row. .IR Classname is the name of an existing class. .IR Filename -is the Unix pathname of the file. In place of a filename, the +is the absolute Unix pathname of the file. In place of a filename, the keywords .BR "stdin" " and " "stdout" can be used so that input to |