diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 12:27:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 12:27:49 +0000 |
commit | 08294dbf5bc6fb1ea0b185488675d91169e231ce (patch) | |
tree | 2f0ad14f5a2a4edf5cdf36e72eaaad7c70ed0c42 /include/usage.h | |
parent | 319f8ebef8a9e48cb74b220d4585552928549266 (diff) | |
download | busybox-w32-08294dbf5bc6fb1ea0b185488675d91169e231ce.tar.gz busybox-w32-08294dbf5bc6fb1ea0b185488675d91169e231ce.tar.bz2 busybox-w32-08294dbf5bc6fb1ea0b185488675d91169e231ce.zip |
df: match coreutils behavior of wrapping lines if filesystem name is too long.
df: trim help text
Diffstat (limited to '')
-rw-r--r-- | include/usage.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/usage.h b/include/usage.h index d5e9d7d5d..f5025b70a 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -607,12 +607,13 @@ | |||
607 | "[-" USE_FEATURE_HUMAN_READABLE("hm") "k] [FILESYSTEM ...]" | 607 | "[-" USE_FEATURE_HUMAN_READABLE("hm") "k] [FILESYSTEM ...]" |
608 | #define df_full_usage \ | 608 | #define df_full_usage \ |
609 | "Print the filesystem space used and space available" \ | 609 | "Print the filesystem space used and space available" \ |
610 | "\n\nOptions:\n" \ | ||
611 | USE_FEATURE_HUMAN_READABLE( \ | 610 | USE_FEATURE_HUMAN_READABLE( \ |
612 | "\n -h Print sizes in human readable format (e.g., 1K 243M 2G )\n" \ | 611 | "\n\nOptions control size display:" \ |
613 | " -m Print sizes in megabytes\n" \ | 612 | "\n -h Human readable (e.g. 1K 243M 2G)" \ |
614 | " -k Print sizes in kilobytes(default)") \ | 613 | "\n -m 1024*1024 blocks" \ |
614 | "\n -k 1024 blocks") \ | ||
615 | SKIP_FEATURE_HUMAN_READABLE( \ | 615 | SKIP_FEATURE_HUMAN_READABLE( \ |
616 | "\n\nOptions:" \ | ||
616 | "\n -k Ignored") | 617 | "\n -k Ignored") |
617 | #define df_example_usage \ | 618 | #define df_example_usage \ |
618 | "$ df\n" \ | 619 | "$ df\n" \ |