diff options
author | Rob Landley <rob@landley.net> | 2017-05-27 15:54:16 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2017-05-27 15:54:16 -0500 |
commit | cf2e8d08b3e06a7bdf95c30282a976bbf072a168 (patch) | |
tree | 3d1181cfa282776d46c593bee59f9466244ca546 /toys/posix/du.c | |
parent | 8fb41fc77ff29091a562c42f6ad83ba19d24fa03 (diff) | |
download | toybox-cf2e8d08b3e06a7bdf95c30282a976bbf072a168.tar.gz |
Replace two space indents with tab indents in help text (for consistency).
Diffstat (limited to 'toys/posix/du.c')
-rw-r--r-- | toys/posix/du.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/toys/posix/du.c b/toys/posix/du.c index fad46a32..0d9a676d 100644 --- a/toys/posix/du.c +++ b/toys/posix/du.c @@ -17,20 +17,20 @@ config DU Show disk usage, space consumed by files and directories. Size in: - -k 1024 byte blocks (default) - -K 512 byte blocks (posix) - -m megabytes - -h human readable format (e.g., 1K 243M 2G ) + -k 1024 byte blocks (default) + -K 512 byte blocks (posix) + -m megabytes + -h human readable format (e.g., 1K 243M 2G ) 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 |