From 5f94346f7387cb5e33cf202dd3306f062bb22052 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 22 Apr 2010 00:45:28 -0400 Subject: date: support -d @SECONDS_SINCE_1970 function old new delta parse_datestr 647 721 +74 Signed-off-by: Denys Vlasenko --- libbb/time.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libbb/time.c') diff --git a/libbb/time.c b/libbb/time.c index 5cd04268c..8d176e52e 100644 --- a/libbb/time.c +++ b/libbb/time.c @@ -68,6 +68,16 @@ void FAST_FUNC parse_datestr(const char *date_str, struct tm *ptm) end = '\0'; /* else end != NUL and we error out */ } + } else if (date_str[0] == '@') { + time_t t = bb_strtol(date_str + 1, NULL, 10); + if (!errno) { + struct tm *lt = localtime(&t); + if (lt) { + *ptm = *lt; + return; + } + } + end = '1'; } else { /* Googled the following on an old date manpage: * -- cgit v1.2.3