diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-02-11 03:11:33 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-02-11 03:11:33 +0000 |
commit | ec4ca05c12127ebcbbf91c17d05a0f9a2d794199 (patch) | |
tree | 0ded42b189c327ccd044ed8cdf13b576ded615ea /src/bin/psql/psql.c | |
parent | 86c28441b4798a102200a58021ffbdbbd08b9ede (diff) | |
download | postgresql-ec4ca05c12127ebcbbf91c17d05a0f9a2d794199.tar.gz postgresql-ec4ca05c12127ebcbbf91c17d05a0f9a2d794199.zip |
Fix \? syntax for copy command.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index e71fbe54e79..7f24005ce1c 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.55 1997/01/26 17:27:32 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.56 1997/02/11 03:11:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -147,7 +147,7 @@ slashUsage(PsqlSettings * ps) fprintf(stderr, " \\a -- toggle field-alignment (currenty %s)\n", on(ps->opt.align)); fprintf(stderr, " \\C [<captn>] -- set html3 caption (currently '%s')\n", ps->opt.caption ? ps->opt.caption : ""); fprintf(stderr, " \\connect <dbname> -- connect to new database (currently '%s')\n", PQdb(ps->db)); - fprintf(stderr, " \\copy {<table> to <file> | <file> from <table>}\n"); + fprintf(stderr, " \\copy table {from | to} <fname>\n"); fprintf(stderr, " \\d [<table>] -- list tables in database or columns in <table>, * for all\n"); fprintf(stderr, " \\e [<fname>] -- edit the current query buffer or <fname>, \\E execute too\n"); fprintf(stderr, " \\f [<sep>] -- change field separater (currently '%s')\n", ps->opt.fieldSep); |