summaryrefslogtreecommitdiffstats
path: root/disk-utils/sfdisk.c
diff options
context:
space:
mode:
authorBenno Schulenberg2015-02-08 21:21:31 +0100
committerKarel Zak2015-02-10 12:23:15 +0100
commit57eae223177a82df97db24d085255b5b4a8d940d (patch)
tree35ed853fae239e2f1c075189bb19582ebc6aa50d /disk-utils/sfdisk.c
parentdocs: sort the options in the man page of sfdisk alphabetically (diff)
downloadkernel-qcow2-util-linux-57eae223177a82df97db24d085255b5b4a8d940d.tar.gz
kernel-qcow2-util-linux-57eae223177a82df97db24d085255b5b4a8d940d.tar.xz
kernel-qcow2-util-linux-57eae223177a82df97db24d085255b5b4a8d940d.zip
textual: sort the options in the usage text of sfdisk alphabetically
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/sfdisk.c')
-rw-r--r--disk-utils/sfdisk.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/disk-utils/sfdisk.c b/disk-utils/sfdisk.c
index 6bcb1401c..b10c0045b 100644
--- a/disk-utils/sfdisk.c
+++ b/disk-utils/sfdisk.c
@@ -1336,20 +1336,20 @@ static void __attribute__ ((__noreturn__)) usage(FILE *out)
fputs(USAGE_OPTIONS, out);
fputs(_(" -A, --append append partitions to existing partition table\n"), out);
- fputs(_(" --bytes print SIZE in bytes rather than in human readable format\n"), out);
fputs(_(" -b, --backup backup partition table sectors (see -O)\n"), out);
+ fputs(_(" --bytes print SIZE in bytes rather than in human readable format\n"), out);
fputs(_(" -f, --force disable all consistency checking\n"), out);
- fputs(_(" -o, --output <list> output columns\n"), out);
- fputs(_(" -O, --backup-file <path> override default backup file name\n"), out);
fputs(_(" -N, --partno <num> specify partition number\n"), out);
- fputs(_(" -X, --label <name> specify label type (dos, gpt, ...)\n"), out);
- fputs(_(" -Y, --label-nested <name> specify nested label type (dos, bsd)\n"), out);
- fputs(_(" -q, --quiet suppress extra info messages\n"), out);
fputs(_(" -n, --no-act do everything except write to device\n"), out);
fputs(_(" --no-reread do not check whether the device is in use\n"), out);
+ fputs(_(" -O, --backup-file <path> override default backup file name\n"), out);
+ fputs(_(" -o, --output <list> output columns\n"), out);
+ fputs(_(" -q, --quiet suppress extra info messages\n"), out);
+ fputs(_(" -X, --label <name> specify label type (dos, gpt, ...)\n"), out);
+ fputs(_(" -Y, --label-nested <name> specify nested label type (dos, bsd)\n"), out);
fputs(USAGE_SEPARATOR, out);
- fputs(_(" -u, --unit S deprecated, only sector unit is supported\n"), out);
fputs(_(" -L, --Linux deprecated, only for backward compatibility\n"), out);
+ fputs(_(" -u, --unit S deprecated, only sector unit is supported\n"), out);
fputs(USAGE_SEPARATOR, out);
fputs(USAGE_HELP, out);