diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-08-23 20:32:56 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-08-23 20:32:56 +0200 |
commit | 2d41d914ab70cfd45f89bc1fdf682144efa001b2 (patch) | |
tree | d91424b51852ac5d040a681c596c15755f51cc92 /src | |
parent | d2cc897b3da9358f850dd9fa5a1a6c7ebc7bd0cf (diff) | |
download | postgresql-2d41d914ab70cfd45f89bc1fdf682144efa001b2.tar.gz postgresql-2d41d914ab70cfd45f89bc1fdf682144efa001b2.zip |
Copy-editing of pg_verify_checksums help and ref page
Reformat synopsis, put options into better order, make the desciption
line a bit shorter, and put more details into the description.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_verify_checksums/pg_verify_checksums.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_verify_checksums/pg_verify_checksums.c b/src/bin/pg_verify_checksums/pg_verify_checksums.c index 28c975446eb..7cf3cf35c7a 100644 --- a/src/bin/pg_verify_checksums/pg_verify_checksums.c +++ b/src/bin/pg_verify_checksums/pg_verify_checksums.c @@ -38,13 +38,13 @@ static const char *progname; static void usage() { - printf(_("%s verifies page level checksums in offline PostgreSQL database cluster.\n\n"), progname); + printf(_("%s verifies data checksums in a PostgreSQL database cluster.\n\n"), progname); printf(_("Usage:\n")); - printf(_(" %s [OPTION] [DATADIR]\n"), progname); + printf(_(" %s [OPTION]... [DATADIR]\n"), progname); printf(_("\nOptions:\n")); printf(_(" [-D, --pgdata=]DATADIR data directory\n")); - printf(_(" -r relfilenode check only relation with specified relfilenode\n")); - printf(_(" -d debug output, listing all checked blocks\n")); + printf(_(" -d debug output, list all checked blocks\n")); + printf(_(" -r RELFILENODE check only relation with specified relfilenode\n")); printf(_(" -V, --version output version information, then exit\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\nIf no data directory (DATADIR) is specified, " |