aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/date.c13
-rw-r--r--include/usage.h14
2 files changed, 25 insertions, 2 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index 09ced0ea1..a230fe2b7 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -69,6 +69,18 @@ static void maybe_set_utc(int opt)
69 putenv((char*)"TZ=UTC0"); 69 putenv((char*)"TZ=UTC0");
70} 70}
71 71
72#if ENABLE_LONG_OPTS
73static const char date_longopts[] ALIGN1 =
74 "rfc-822\0" No_argument "R"
75 "rfc-2822\0" No_argument "R"
76 "set\0" Required_argument "s"
77 "utc\0" No_argument "u"
78 /*"universal\0" No_argument "u"*/
79 "date\0" Required_argument "d"
80 "reference\0" Required_argument "r"
81 ;
82#endif
83
72int date_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 84int date_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
73int date_main(int argc UNUSED_PARAM, char **argv) 85int date_main(int argc UNUSED_PARAM, char **argv)
74{ 86{
@@ -84,6 +96,7 @@ int date_main(int argc UNUSED_PARAM, char **argv)
84 96
85 opt_complementary = "d--s:s--d" 97 opt_complementary = "d--s:s--d"
86 IF_FEATURE_DATE_ISOFMT(":R--I:I--R"); 98 IF_FEATURE_DATE_ISOFMT(":R--I:I--R");
99 IF_LONG_OPTS(applet_long_options = date_longopts;)
87 opt = getopt32(argv, "Rs:ud:r:" 100 opt = getopt32(argv, "Rs:ud:r:"
88 IF_FEATURE_DATE_ISOFMT("I::D:"), 101 IF_FEATURE_DATE_ISOFMT("I::D:"),
89 &date_str, &date_str, &filename 102 &date_str, &date_str, &filename
diff --git a/include/usage.h b/include/usage.h
index 8316c4368..ca8810650 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -673,17 +673,27 @@
673#define date_full_usage "\n\n" \ 673#define date_full_usage "\n\n" \
674 "Display time (using +FMT), or set time\n" \ 674 "Display time (using +FMT), or set time\n" \
675 "\nOptions:" \ 675 "\nOptions:" \
676 IF_NOT_LONG_OPTS( \
676 "\n [-s] TIME Set time to TIME" \ 677 "\n [-s] TIME Set time to TIME" \
677 "\n -u Work in UTC (don't convert to local time)" \ 678 "\n -u Work in UTC (don't convert to local time)" \
678 "\n -R Output RFC-822 compliant date string" \ 679 "\n -R Output RFC-2822 compliant date string" \
680 ) IF_LONG_OPTS( \
681 "\n [-s,--set] TIME Set time to TIME" \
682 "\n -u,--utc Work in UTC (don't convert to local time)" \
683 "\n -R,--rfc-2822 Output RFC-2822 compliant date string" \
684 ) \
679 IF_FEATURE_DATE_ISOFMT( \ 685 IF_FEATURE_DATE_ISOFMT( \
680 "\n -I[SPEC] Output ISO-8601 compliant date string" \ 686 "\n -I[SPEC] Output ISO-8601 compliant date string" \
681 "\n SPEC='date' (default) for date only," \ 687 "\n SPEC='date' (default) for date only," \
682 "\n 'hours', 'minutes', or 'seconds' for date and" \ 688 "\n 'hours', 'minutes', or 'seconds' for date and" \
683 "\n time to the indicated precision" \ 689 "\n time to the indicated precision" \
684 ) \ 690 ) IF_NOT_LONG_OPTS( \
685 "\n -r FILE Display last modification time of FILE" \ 691 "\n -r FILE Display last modification time of FILE" \
686 "\n -d TIME Display TIME, not 'now'" \ 692 "\n -d TIME Display TIME, not 'now'" \
693 ) IF_LONG_OPTS( \
694 "\n -r,--reference FILE Display last modification time of FILE" \
695 "\n -d,--date TIME Display TIME, not 'now'" \
696 ) \
687 IF_FEATURE_DATE_ISOFMT( \ 697 IF_FEATURE_DATE_ISOFMT( \
688 "\n -D FMT Use FMT for -d TIME conversion" \ 698 "\n -D FMT Use FMT for -d TIME conversion" \
689 ) \ 699 ) \