--- src/bin/psql/help.c Thu Oct 24 05:33:50 2002 +++ src/bin/psql/help.c Mon Jan 6 19:07:47 2003 @@ -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)")); @@ -200,6 +201,7 @@ fprintf(output, _(" \\H toggle HTML output mode (currently %s)\n"), ON(pset.popt.topt.format == PRINT_HTML)); fprintf(output, _(" \\i FILE execute commands from file\n")); + fprintf(output, _(" \\import ENV copy environment variable to internal\n")); fprintf(output, _(" \\l list all databases\n")); fprintf(output, _(" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n" " large object operations\n"));