aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/du.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2018-12-04 14:22:12 -0800
committerRob Landley <rob@landley.net>2018-12-04 17:08:19 -0600
commit141a075c0e192dc9910e777270114b1864270bfd (patch)
tree2d62f0cedc34773310b23b3d8f55f577cbbaf9db /toys/posix/du.c
parentbcf244f3e6ff3c76536063bc5f7d684c6fd4e3fd (diff)
downloadtoybox-141a075c0e192dc9910e777270114b1864270bfd.tar.gz
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".
Diffstat (limited to 'toys/posix/du.c')
-rw-r--r--toys/posix/du.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/toys/posix/du.c b/toys/posix/du.c
index d2f57277..ecae7568 100644
--- a/toys/posix/du.c
+++ b/toys/posix/du.c
@@ -19,18 +19,18 @@ config DU
Size in:
-k 1024 byte blocks (default)
-K 512 byte blocks (posix)
- -m megabytes
- -h human readable format (e.g., 1K 243M 2G )
+ -m Megabytes
+ -h Human readable (K=1024)
What to show:
- -a all files, not just directories
- -H follow symlinks on cmdline
- -L follow all symlinks
- -s only total size of each argument
- -x don't leave this filesystem
- -c cumulative total
- -d N only depth < N
- -l disable hardlink filter
+ -a All files, not just directories
+ -H Follow symlinks on cmdline
+ -L Follow all symlinks
+ -s Only total size of each argument
+ -x Don't leave this filesystem
+ -c Cumulative total
+ -d N Only depth < N
+ -l Disable hardlink filter
*/
#define FOR_du