--- src/bin/psql/help.c Thu Oct 2 10:39:31 2003 +++ src/bin/psql/help.c Wed Oct 13 21:45:09 2004 @@ -95,7 +95,7 @@ puts(_(" -f FILENAME execute commands from file, then exit")); puts(_(" -l list available databases, then exit")); puts(_(" -v NAME=VALUE set psql variable NAME to VALUE")); - puts(_(" -X do not read startup file (~/.psqlrc)")); + puts(_(" -X do not read startup file (~/.desk/psqlrc)")); puts(_(" --help show this help, then exit")); puts(_(" --version output version information, then exit")); @@ -104,6 +104,7 @@ puts(_(" -e echo commands sent to server")); puts(_(" -E display queries that internal commands generate")); puts(_(" -q run quietly (no messages, only query output)")); + puts(_(" -Q Like -f, for scripts, arguments :1 .. :9")); puts(_(" -o FILENAME send query results to file (or |pipe)")); puts(_(" -n disable enhanced command line editing (readline)")); puts(_(" -s single-step mode (confirm each query)")); @@ -222,6 +223,7 @@ fprintf(output, _(" \\dp [PATTERN] list table access privileges\n")); fprintf(output, _(" \\dT [PATTERN] list data types (add \"+\" for more detail)\n")); fprintf(output, _(" \\du [PATTERN] list users\n")); + fprintf(output, _(" \\import ENV copy environment variable to internal\n")); fprintf(output, _(" \\l list all databases (add \"+\" for more detail)\n")); fprintf(output, _(" \\z [PATTERN] list table access privileges (same as \\dp)\n")); fprintf(output, "\n");