diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-21 01:26:49 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-21 01:26:49 +0000 |
commit | f2d936410c1523ab9bfc0663053d444589b2e7d7 (patch) | |
tree | 2c99ce8ba7d4d592806fbf81899e663bc884676b /coreutils/date.c | |
parent | e8140c5cf14be7ddbc10f1bf834fd4150994a184 (diff) | |
download | busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.gz busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.bz2 busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.zip |
More Doc updates. cmdedit and more termio fixes.
git-svn-id: svn://busybox.net/trunk/busybox@492 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index 25ce05d2d..dd054be66 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -40,12 +40,14 @@ | |||
40 | mail commands */ | 40 | mail commands */ |
41 | 41 | ||
42 | static const char date_usage[] = "date [OPTION]... [+FORMAT]\n" | 42 | static const char date_usage[] = "date [OPTION]... [+FORMAT]\n" |
43 | " or: date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n\n" | 43 | " or: date [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n" |
44 | "Display the current time in the given FORMAT, or set the system date.\n" | 44 | #ifndef BB_FEATURE_TRIVIAL_HELP |
45 | "\nOptions:\n\t-R\t\toutput RFC-822 compliant date string\n" | 45 | "\nDisplays the current time in the given FORMAT, or sets the system date.\n" |
46 | "\t-s\t\tset time described by STRING\n" | 46 | "\nOptions:\n\t-R\tOutputs RFC-822 compliant date string\n" |
47 | 47 | "\t-s\tSets time described by STRING\n" | |
48 | "\t-u\t\tprint or set Coordinated Universal Time\n"; | 48 | "\t-u\tPrints or sets Coordinated Universal Time\n" |
49 | #endif | ||
50 | ; | ||
49 | 51 | ||
50 | 52 | ||
51 | /* Input parsing code is always bulky - used heavy duty libc stuff as | 53 | /* Input parsing code is always bulky - used heavy duty libc stuff as |