--- src/bin/psql/help.c Thu Oct 25 09:49:54 2001 +++ src/bin/psql/help.c Thu May 2 19:30:38 2002 @@ -112,6 +112,7 @@ puts(_(" -P VAR[=ARG] Set printing option 'VAR' to 'ARG' (see \\pset command)")); puts(_(" -q Run quietly (no messages, only query output)")); + puts(_(" -Q Like -f, for scripts, arguments :1 .. :9")); puts(_(" -R STRING Set record separator (default: newline) (-P recordsep=)")); puts(_(" -s Single step mode (confirm each query)")); puts(_(" -S Single line mode (end of line terminates SQL command)")); @@ -128,7 +129,7 @@ puts(_(" -V Show version information and exit")); puts(_(" -W Prompt for password (should happen automatically)")); puts(_(" -x Turn on expanded table output (-P expanded)")); - puts(_(" -X Do not read startup file (~/.psqlrc)")); + puts(_(" -X Do not read startup file (~/.desk/psqlrc)")); puts(_( "\nFor more information, type \"\\?\" (for internal commands) or \"\\help\"\n" @@ -214,6 +215,7 @@ fprintf(fout, _(" \\H toggle HTML output mode (currently %s)\n"), ON(pset.popt.topt.format == PRINT_HTML)); fprintf(fout, _(" \\i FILENAME execute commands from file\n")); + fprintf(fout, _(" \\import ENV copy environment variable to internal\n")); fprintf(fout, _(" \\l list all databases\n")); fprintf(fout, _(" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n" " large object operations\n"));