|
3 | 3 | * |
4 | 4 | * Copyright (c) 2000-2008, PostgreSQL Global Development Group |
5 | 5 | * |
6 | | - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.122 2008/01/20 21:13:55 tgl Exp $ |
| 6 | + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.123 2008/03/26 15:24:56 mha Exp $ |
7 | 7 | */ |
8 | 8 | #include"postgres_fe.h" |
9 | 9 |
|
@@ -177,14 +177,16 @@ slashUsage(unsigned short int pager) |
177 | 177 | fprintf(output,_(" \\encoding [ENCODING]\n" |
178 | 178 | " show or set client encoding\n")); |
179 | 179 | fprintf(output,_(" \\h [NAME] help on syntax of SQL commands, * for all commands\n")); |
| 180 | +fprintf(output,_(" \\prompt [TEXT] NAME\n" |
| 181 | +" prompt user to set internal variable\n")); |
| 182 | +fprintf(output,_(" \\password [USERNAME]\n" |
| 183 | +" securely change the password for a user\n")); |
180 | 184 | fprintf(output,_(" \\q quit psql\n")); |
181 | 185 | fprintf(output,_(" \\set [NAME [VALUE]]\n" |
182 | 186 | " set internal variable, or list all if no parameters\n")); |
183 | 187 | fprintf(output,_(" \\timing toggle timing of commands (currently %s)\n"), |
184 | 188 | ON(pset.timing)); |
185 | 189 | fprintf(output,_(" \\unset NAME unset (delete) internal variable\n")); |
186 | | -fprintf(output,_(" \\prompt [TEXT] NAME\n" |
187 | | -" prompt user to set internal variable\n")); |
188 | 190 | fprintf(output,_(" \\! [COMMAND] execute command in shell or start interactive shell\n")); |
189 | 191 | fprintf(output,"\n"); |
190 | 192 |
|
|