diff options
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 |