date: move applet and usage bits to date.c
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
122
coreutils/date.c
122
coreutils/date.c
@@ -19,7 +19,48 @@
|
||||
/* Input parsing code is always bulky - used heavy duty libc stuff as
|
||||
much as possible, missed out a lot of bounds checking */
|
||||
|
||||
/* Default input handling to save surprising some people */
|
||||
//applet:IF_DATE(APPLET(date, _BB_DIR_BIN, _BB_SUID_DROP))
|
||||
|
||||
//kbuild:lib-$(CONFIG_DATE) += date.o
|
||||
|
||||
//config:config DATE
|
||||
//config: bool "date"
|
||||
//config: default y
|
||||
//config: help
|
||||
//config: date is used to set the system date or display the
|
||||
//config: current time in the given format.
|
||||
//config:
|
||||
//config:config FEATURE_DATE_ISOFMT
|
||||
//config: bool "Enable ISO date format output (-I)"
|
||||
//config: default y
|
||||
//config: depends on DATE
|
||||
//config: help
|
||||
//config: Enable option (-I) to output an ISO-8601 compliant
|
||||
//config: date/time string.
|
||||
//config:
|
||||
//config:# defaults to "no": stat's nanosecond field is a bit non-portable
|
||||
//config:config FEATURE_DATE_NANO
|
||||
//config: bool "Support %[num]N nanosecond format specifier"
|
||||
//config: default n
|
||||
//config: depends on DATE && PLATFORM_LINUX # syscall(__NR_clock_gettime)
|
||||
//config: help
|
||||
//config: Support %[num]N format specifier. Adds ~250 bytes of code.
|
||||
//config:
|
||||
//config:config FEATURE_DATE_COMPAT
|
||||
//config: bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
|
||||
//config: default y
|
||||
//config: depends on DATE
|
||||
//config: help
|
||||
//config: System time can be set by 'date -s DATE' and simply 'date DATE',
|
||||
//config: but formats of DATE string are different. 'date DATE' accepts
|
||||
//config: a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
|
||||
//config: unnatural placement of year between minutes and seconds.
|
||||
//config: date -s (and other commands like touch -d) use more sensible
|
||||
//config: formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
|
||||
//config:
|
||||
//config: With this option off, 'date DATE' is 'date -s DATE' support
|
||||
//config: the same format. With it on, 'date DATE' additionally supports
|
||||
//config: MMDDhhmm[[YY]YY][.ss] format.
|
||||
|
||||
/* GNU coreutils 6.9 man page:
|
||||
* date [OPTION]... [+FORMAT]
|
||||
@@ -52,45 +93,46 @@
|
||||
* -D FMT is a bbox extension for _input_ conversion of -d DATE
|
||||
*/
|
||||
|
||||
//kbuild:lib-$(CONFIG_DATE) += date.o
|
||||
|
||||
//config:config DATE
|
||||
//config: bool "date"
|
||||
//config: default y
|
||||
//config: help
|
||||
//config: date is used to set the system date or display the
|
||||
//config: current time in the given format.
|
||||
//config:
|
||||
//config:config FEATURE_DATE_ISOFMT
|
||||
//config: bool "Enable ISO date format output (-I)"
|
||||
//config: default y
|
||||
//config: depends on DATE
|
||||
//config: help
|
||||
//config: Enable option (-I) to output an ISO-8601 compliant
|
||||
//config: date/time string.
|
||||
//config:
|
||||
//config:config FEATURE_DATE_NANO
|
||||
//config: bool "Support %[num]N nanosecond format specifier"
|
||||
//config: default n
|
||||
//config: depends on DATE && PLATFORM_LINUX # syscall(__NR_clock_gettime)
|
||||
//config: help
|
||||
//config: Support %[num]N format specifier. Adds ~250 bytes of code.
|
||||
//config:
|
||||
//config:config FEATURE_DATE_COMPAT
|
||||
//config: bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
|
||||
//config: default y
|
||||
//config: depends on DATE
|
||||
//config: help
|
||||
//config: System time can be set by 'date -s DATE' and simply 'date DATE',
|
||||
//config: but formats of DATE string are different. 'date DATE' accepts
|
||||
//config: a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
|
||||
//config: unnatural placement of year between minutes and seconds.
|
||||
//config: date -s (and other commands like touch -d) use more sensible
|
||||
//config: formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
|
||||
//config:
|
||||
//config: With this option off, 'date DATE' is 'date -s DATE' support
|
||||
//config: the same format. With it on, 'date DATE' additionally supports
|
||||
//config: MMDDhhmm[[YY]YY][.ss] format.
|
||||
//usage:#define date_trivial_usage
|
||||
//usage: "[OPTIONS] [+FMT] [TIME]"
|
||||
//usage:#define date_full_usage "\n\n"
|
||||
//usage: "Display time (using +FMT), or set time\n"
|
||||
//usage: "\nOptions:"
|
||||
//usage: IF_NOT_LONG_OPTS(
|
||||
//usage: "\n [-s] TIME Set time to TIME"
|
||||
//usage: "\n -u Work in UTC (don't convert to local time)"
|
||||
//usage: "\n -R Output RFC-2822 compliant date string"
|
||||
//usage: ) IF_LONG_OPTS(
|
||||
//usage: "\n [-s,--set] TIME Set time to TIME"
|
||||
//usage: "\n -u,--utc Work in UTC (don't convert to local time)"
|
||||
//usage: "\n -R,--rfc-2822 Output RFC-2822 compliant date string"
|
||||
//usage: )
|
||||
//usage: IF_FEATURE_DATE_ISOFMT(
|
||||
//usage: "\n -I[SPEC] Output ISO-8601 compliant date string"
|
||||
//usage: "\n SPEC='date' (default) for date only,"
|
||||
//usage: "\n 'hours', 'minutes', or 'seconds' for date and"
|
||||
//usage: "\n time to the indicated precision"
|
||||
//usage: )
|
||||
//usage: IF_NOT_LONG_OPTS(
|
||||
//usage: "\n -r FILE Display last modification time of FILE"
|
||||
//usage: "\n -d TIME Display TIME, not 'now'"
|
||||
//usage: ) IF_LONG_OPTS(
|
||||
//usage: "\n -r,--reference FILE Display last modification time of FILE"
|
||||
//usage: "\n -d,--date TIME Display TIME, not 'now'"
|
||||
//usage: )
|
||||
//usage: IF_FEATURE_DATE_ISOFMT(
|
||||
//usage: "\n -D FMT Use FMT for -d TIME conversion"
|
||||
//usage: )
|
||||
//usage: "\n"
|
||||
//usage: "\nRecognized TIME formats:"
|
||||
//usage: "\n hh:mm[:ss]"
|
||||
//usage: "\n [YYYY.]MM.DD-hh:mm[:ss]"
|
||||
//usage: "\n YYYY-MM-DD hh:mm[:ss]"
|
||||
//usage: "\n [[[[[YY]YY]MM]DD]hh]mm[.ss]"
|
||||
//usage:
|
||||
//usage:#define date_example_usage
|
||||
//usage: "$ date\n"
|
||||
//usage: "Wed Apr 12 18:52:41 MDT 2000\n"
|
||||
|
||||
#include "libbb.h"
|
||||
#if ENABLE_FEATURE_DATE_NANO
|
||||
|
Reference in New Issue
Block a user