From: Benno Schulenberg Date: Sun, 29 Jun 2014 15:49:42 +0000 (+0200) Subject: findmnt: minimally improve wording of usage text X-Git-Tag: v2.25-rc2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab5b4f837dec4dc7d88cdfcc344b5c0c420c3eee;p=thirdparty%2Futil-linux.git findmnt: minimally improve wording of usage text Also sort the options better and tweak whitespace. Signed-off-by: Benno Schulenberg --- diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c index 06fdd8f410..445a9b3f1a 100644 --- a/misc-utils/findmnt.c +++ b/misc-utils/findmnt.c @@ -1138,7 +1138,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fputs(_(" -s, --fstab search in static table of filesystems\n"), out); fputs(_(" -m, --mtab search in table of mounted filesystems\n"), out); fputs(_(" -k, --kernel search in kernel table of mounted\n" - " filesystems (default)\n"), out); + " filesystems (default)\n"), out); fputc('\n', out); fputs(_(" -p, --poll[=] monitor changes in table of mounted filesystems\n"), out); fputs(_(" -w, --timeout upper limit in milliseconds that --poll will block\n"), out); @@ -1147,8 +1147,8 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fputs(_(" -A, --all disable all built-in filters, print all filesystems\n"), out); fputs(_(" -a, --ascii use ASCII chars for tree formatting\n"), out); fputs(_(" -b, --bytes print sizes in bytes rather than in human readable format\n"), out); + fputs(_(" -C, --nocanonicalize don't canonicalize when comparing paths\n"), out); fputs(_(" -c, --canonicalize canonicalize printed paths\n"), out); - fputs(_(" -C, --nocanonicalize don't canonicalize when compare paths\n"), out); fputs(_(" -D, --df imitate the output of df(1)\n"), out); fputs(_(" -d, --direction direction of search, 'forward' or 'backward'\n"), out); fputs(_(" -e, --evaluate convert tags (LABEL,UUID,PARTUUID,PARTLABEL) \n" @@ -1159,18 +1159,18 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fputs(_(" -l, --list use list format output\n"), out); fputs(_(" -N, --task use alternative namespace (/proc//mountinfo file)\n"), out); fputs(_(" -n, --noheadings don't print column headings\n"), out); - fputs(_(" -U, --uniq ignore filesystems with duplicate target\n"), out); - fputs(_(" -u, --notruncate don't truncate text in columns\n"), out); fputs(_(" -O, --options limit the set of filesystems by mount options\n"), out); fputs(_(" -o, --output the output columns to be shown\n"), out); fputs(_(" -P, --pairs use key=\"value\" output format\n"), out); - fputs(_(" -r, --raw use raw output format\n"), out); - fputs(_(" -t, --types limit the set of filesystems by FS types\n"), out); - fputs(_(" -v, --nofsroot don't print [/dir] for bind or btrfs mounts\n"), out); fputs(_(" -R, --submounts print all submounts for the matching filesystems\n"), out); + fputs(_(" -r, --raw use raw output format\n"), out); fputs(_(" -S, --source the device to mount (by name, maj:min, \n" " LABEL=, UUID=, PARTUUID=, PARTLABEL=)\n"), out); fputs(_(" -T, --target the mountpoint to use\n"), out); + fputs(_(" -t, --types limit the set of filesystems by FS types\n"), out); + fputs(_(" -U, --uniq ignore filesystems with duplicate target\n"), out); + fputs(_(" -u, --notruncate don't truncate text in columns\n"), out); + fputs(_(" -v, --nofsroot don't print [/dir] for bind or btrfs mounts\n"), out); fputs(USAGE_SEPARATOR, out); fputs(USAGE_HELP, out);