diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-06 23:16:44 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-06 23:16:44 +0000 |
commit | 6c175a8e4c48c66f2a5b54ac187ab9ec3a148335 (patch) | |
tree | 0fd5ef5f1b9a86159d807993480e678dbed9e0f6 /include/usage.h | |
parent | b9bae5ea10dd9deae8b073a65c6fba03bdf16824 (diff) | |
download | busybox-w32-6c175a8e4c48c66f2a5b54ac187ab9ec3a148335.tar.gz busybox-w32-6c175a8e4c48c66f2a5b54ac187ab9ec3a148335.tar.bz2 busybox-w32-6c175a8e4c48c66f2a5b54ac187ab9ec3a148335.zip |
Patch from Edward Betts <edward@debian.org> to add -x switch to du.c
git-svn-id: svn://busybox.net/trunk/busybox@4550 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index e7de6f53f..98a9f32cd 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -343,7 +343,7 @@ | |||
343 | "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n" | 343 | "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n" |
344 | 344 | ||
345 | #define du_trivial_usage \ | 345 | #define du_trivial_usage \ |
346 | "[-ls" USAGE_HUMAN_READABLE("hm") USAGE_NOT_HUMAN_READABLE("") "k] [FILE]..." | 346 | "[-lsx" USAGE_HUMAN_READABLE("hm") USAGE_NOT_HUMAN_READABLE("") "k] [FILE]..." |
347 | #define du_full_usage \ | 347 | #define du_full_usage \ |
348 | "Summarizes disk space used for each FILE and/or directory.\n" \ | 348 | "Summarizes disk space used for each FILE and/or directory.\n" \ |
349 | "Disk space is printed in units of 1024 bytes.\n\n" \ | 349 | "Disk space is printed in units of 1024 bytes.\n\n" \ |
@@ -353,6 +353,7 @@ | |||
353 | USAGE_HUMAN_READABLE( \ | 353 | USAGE_HUMAN_READABLE( \ |
354 | "\n\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n" \ | 354 | "\n\t-h\tprint sizes in human readable format (e.g., 1K 243M 2G )\n" \ |
355 | "\t-m\tprint sizes in megabytes\n" \ | 355 | "\t-m\tprint sizes in megabytes\n" \ |
356 | "\t-x\tskip directories on different filesystems\n" \ | ||
356 | "\t-k\tprint sizes in kilobytes(default)") USAGE_NOT_HUMAN_READABLE( \ | 357 | "\t-k\tprint sizes in kilobytes(default)") USAGE_NOT_HUMAN_READABLE( \ |
357 | "\n\t-k\tprint sizes in kilobytes(compatibility)") | 358 | "\n\t-k\tprint sizes in kilobytes(compatibility)") |
358 | #define du_example_usage \ | 359 | #define du_example_usage \ |