diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2005-09-30 07:58:01 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2005-09-30 07:58:01 +0000 |
commit | e5c453edceb176bb5fa406bd3af08b1f34451ae9 (patch) | |
tree | e9706d9b86a28c3f7f2788835c894fdd045eec35 /src/bin/scripts/reindexdb.c | |
parent | 7df9f55f4b43f7d4e588a2792ca8609186d59d2f (diff) | |
download | postgresql-e5c453edceb176bb5fa406bd3af08b1f34451ae9.tar.gz postgresql-e5c453edceb176bb5fa406bd3af08b1f34451ae9.zip |
Clean up the help displays.
Diffstat (limited to 'src/bin/scripts/reindexdb.c')
-rw-r--r-- | src/bin/scripts/reindexdb.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/bin/scripts/reindexdb.c b/src/bin/scripts/reindexdb.c index bc39416952c..2c2430b14ed 100644 --- a/src/bin/scripts/reindexdb.c +++ b/src/bin/scripts/reindexdb.c @@ -4,7 +4,7 @@ * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/scripts/reindexdb.c,v 1.1 2005/07/29 15:13:11 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/reindexdb.c,v 1.2 2005/09/30 07:58:01 petere Exp $ * *------------------------------------------------------------------------- */ @@ -332,20 +332,20 @@ help(const char *progname) printf(_("Usage:\n")); printf(_(" %s [OPTION]... [DBNAME]\n"), progname); printf(_("\nOptions:\n")); - printf(_(" -a, --all reindex all databases\n")); - printf(_(" -s, --system reindex system catalogs\n")); - printf(_(" -d, --dbname=DBNAME database to reindex\n")); - printf(_(" -t, --table=TABLE reindex specific table only\n")); - printf(_(" -i, --index=INDEX recreate specific index only\n")); - printf(_(" -e, --echo show the commands sent to the server\n")); - printf(_(" -q, --quiet don't write any output\n")); - printf(_(" --help show this help, then exit\n")); - printf(_(" --version output version information, then exit\n")); + printf(_(" -a, --all reindex all databases\n")); + printf(_(" -s, --system reindex system catalogs\n")); + printf(_(" -d, --dbname=DBNAME database to reindex\n")); + printf(_(" -t, --table=TABLE reindex specific table only\n")); + printf(_(" -i, --index=INDEX recreate specific index only\n")); + printf(_(" -e, --echo show the commands sent to the server\n")); + printf(_(" -q, --quiet don't write any output\n")); + printf(_(" --help show this help, then exit\n")); + printf(_(" --version output version information, then exit\n")); printf(_("\nConnection options:\n")); - printf(_(" -h, --host=HOSTNAME database server host or socket direcotry\n")); - printf(_(" -p, --port=PORT database server port\n")); - printf(_(" -U, --username=NAME user name to connect as\n")); - printf(_(" -W, --password prompt for password\n")); + printf(_(" -h, --host=HOSTNAME database server host or socket direcotry\n")); + printf(_(" -p, --port=PORT database server port\n")); + printf(_(" -U, --username=NAME user name to connect as\n")); + printf(_(" -W, --password prompt for password\n")); printf(_("\nRead the description of the SQL command REINDEX for details.\n")); printf(_("\nReport bugs to <pgsql-bugs@postgresql.org>.\n")); } |