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/sfdisk.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/sfdisk.c')
| -rw-r--r-- | disk-utils/sfdisk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/disk-utils/sfdisk.c b/disk-utils/sfdisk.c index 73a1331ede..499dd8f640 100644 --- a/disk-utils/sfdisk.c +++ b/disk-utils/sfdisk.c @@ -1310,6 +1310,9 @@ static void __attribute__ ((__noreturn__)) usage(FILE *out) _(" %1$s [options] <dev> [[-N] <part>]\n" " %1$s [options] <command>\n"), program_invocation_short_name); + fputs(USAGE_SEPARATOR, out); + fputs(_("Display or manipulate a disk partition table.\n"), out); + fputs(_("\nCommands:\n"), out); fputs(_(" -a, --activate <dev> [<part> ...] list or set bootable MBR partitions\n"), out); fputs(_(" -d, --dump <dev> dump partition table (usable for later input)\n"), out); |
