diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-08-21 20:52:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-08-21 20:52:55 +0000 |
commit | 99ecc46d93a331c9af5b20d6700eb43a51bcb125 (patch) | |
tree | 2e30c19bd3eb6b668a64f102c39383143ab0ab06 | |
parent | 6375853cd84dba3d4f4486f9c693e319924fe1d7 (diff) | |
download | busybox-w32-99ecc46d93a331c9af5b20d6700eb43a51bcb125.tar.gz busybox-w32-99ecc46d93a331c9af5b20d6700eb43a51bcb125.tar.bz2 busybox-w32-99ecc46d93a331c9af5b20d6700eb43a51bcb125.zip |
- document rmdir args
-rw-r--r-- | include/usage.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index dc5190759..41012afc1 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3271,7 +3271,16 @@ | |||
3271 | #define rmdir_trivial_usage \ | 3271 | #define rmdir_trivial_usage \ |
3272 | "[OPTION]... DIRECTORY..." | 3272 | "[OPTION]... DIRECTORY..." |
3273 | #define rmdir_full_usage "\n\n" \ | 3273 | #define rmdir_full_usage "\n\n" \ |
3274 | "Remove the DIRECTORY, if it is empty" | 3274 | "Remove the DIRECTORY, if it is empty.\n" \ |
3275 | "\nOptions:" \ | ||
3276 | USE_FEATURE_RMDIR_LONG_OPTIONS( \ | ||
3277 | "\n -p|--parents Include parents" \ | ||
3278 | "\n -ignore-fail-on-non-empty" \ | ||
3279 | ) \ | ||
3280 | SKIP_FEATURE_RMDIR_LONG_OPTIONS( \ | ||
3281 | "\n -p Include parents" \ | ||
3282 | ) | ||
3283 | |||
3275 | #define rmdir_example_usage \ | 3284 | #define rmdir_example_usage \ |
3276 | "# rmdir /tmp/foo\n" | 3285 | "# rmdir /tmp/foo\n" |
3277 | 3286 | ||