From 141a075c0e192dc9910e777270114b1864270bfd Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 4 Dec 2018 14:22:12 -0800 Subject: Clean up some --help formatting. Be consistent about upper versus lower case. (Upper seems to have the majority, so I went with that, though I'm happy to provide the opposite patch as long as we're consistent!) Be consistent about using \t. (Though saving a few bytes seems like it might be better done in the code that generates help.h rather than directly in the source, since tabs make careful ASCII art layout hard enough that we regularly have things misaligned.) Remove trailing periods (most of which seem to have been added by me). Always use the US "human readable" rather than my British "human-readable", and be more consistent about declaring whether we're showing multiples of 1000 or 1024. Just say "verbose" rather than adding a useless "mode" or "output". --- toys/lsb/md5sum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/lsb/md5sum.c') diff --git a/toys/lsb/md5sum.c b/toys/lsb/md5sum.c index fbad784a..80f45a0e 100644 --- a/toys/lsb/md5sum.c +++ b/toys/lsb/md5sum.c @@ -29,7 +29,7 @@ config MD5SUM Calculate md5 hash for each input file, reading from stdin if none. Output one hash (32 hex digits) for each input file, followed by filename. - -b brief (hash only, no filename) + -b Brief (hash only, no filename) -c Check each line of FILE is the same hash+filename we'd output config SHA1SUM @@ -42,7 +42,7 @@ config SHA1SUM one hash (40 hex digits for sha1, 56 for sha224, 64 for sha256, 96 for sha384, and 128 for sha512) for each input file, followed by filename. - -b brief (hash only, no filename) + -b Brief (hash only, no filename) -c Check each line of FILE is the same hash+filename we'd output config SHA224SUM -- cgit v1.2.3