|
3 | 3 | *
|
4 | 4 | * Copyright 2000 by PostgreSQL Global Development Group
|
5 | 5 | *
|
6 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.43 2002/03/0500:01:01 momjian Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.44 2002/03/0506:13:19 momjian Exp $ |
7 | 7 | */
|
8 | 8 | #include"postgres_fe.h"
|
9 | 9 | #include"help.h"
|
@@ -205,6 +205,7 @@ slashUsage(void)
|
205 | 205 | fprintf(fout,_(" \\df list functions\n"));
|
206 | 206 | fprintf(fout,_(" \\do list operators\n"));
|
207 | 207 | fprintf(fout,_(" \\dT list data types\n"));
|
| 208 | +fprintf(fout,_(" \\du [PATTERN] Lists all configured users or only those that match pattern\n")); |
208 | 209 | fprintf(fout,_(" \\e FILENAME edit the current query buffer or file with external editor\n"));
|
209 | 210 | fprintf(fout,_(" \\echo TEXT write text to standard output\n"));
|
210 | 211 | fprintf(fout,_(" \\encoding ENCODING set client encoding\n"));
|
|