diff options
| author | Benno Schulenberg <bensberg@justemail.net> | 2014-12-22 22:57:17 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2015-01-06 11:27:38 +0100 |
| commit | 451dbcfae1406f526208faf6033d6dcc8ac100da (patch) | |
| tree | 594265cfbfad9989191ae3df877d7e6c300699a8 /disk-utils/cfdisk.c | |
| parent | 4a98629b293a531e5f17369b77935163b89a5dea (diff) | |
| download | util-linux-451dbcfae1406f526208faf6033d6dcc8ac100da.tar.gz | |
textual: add a docstring to most of the utilities
This adds a concise description of a tool to its usage text.
A first form of this patch was proposed by Steven Honeyman
(see http://www.spinics.net/lists/util-linux-ng/msg09994.html).
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/cfdisk.c')
| -rw-r--r-- | disk-utils/cfdisk.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 324f56bbf5..60a9535243 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -2163,10 +2163,12 @@ static int ui_run(struct cfdisk *cf) static void __attribute__ ((__noreturn__)) usage(FILE *out) { fputs(USAGE_HEADER, out); - fprintf(out, _(" %1$s [options] <disk>\n"), program_invocation_short_name); + fputs(USAGE_SEPARATOR, out); + fputs(_("Display or manipulate a disk partition table.\n"), out); + fputs(USAGE_OPTIONS, out); fputs(_(" -L --color[=<when>] colorize output (auto, always or never)\n"), out); fputs(_(" -z --zero start with zeroed partition table\n"), out); |
