如果没有足够的例子,我会继续在圈子里走动以获得“秒”'版本的iso8601由' date'打印出来。请查看busybox 1.22.1提供的日期帮助。我似乎无法理解所需的语法。在我的经验中,例子比说话更响亮,我找不到任何可以在网上有用的东西。
以下是我的尝试:
➤ date -I=seconds
➤ date -I SPEC='seconds'
➤ date -I seconds
➤ date -I='seconds'
➤ date -I 'seconds'
➤ date -I['seconds']
➤ date -I TIMESPEC='seconds'
➤ date -I TIMESPEC=seconds
注意我尝试使用Ubuntu版本的日期,并且能够弄清楚如何获得iso8601 =秒格式的日期,但不能在busybox中...
以下是Busybox 1.22.1的日期帮助:
BusyBox v1.22.1 (2014-09-26 07:33:17 CEST) multi-call binary.
Usage: date [OPTIONS] [+FMT] [TIME]
Display time (using +FMT), or set time
[-s,--set] TIME Set time to TIME
-u,--utc Work in UTC (don't convert to local time)
-R,--rfc-2822 Output RFC-2822 compliant date string
-I[SPEC] Output ISO-8601 compliant date string
SPEC='date' (default) for date only,
'hours', 'minutes', or 'seconds' for date and
time to the indicated precision
-r,--reference FILE Display last modification time of FILE
-d,--date TIME Display TIME, not 'now'
-D FMT Use FMT for -d TIME conversion
答案 0 :(得分:1)
文档(即帮助)令人困惑,并且不会为简单的功能带来愉快的体验。相反,需要重新编写文档,以便示例命令行输入也是帮助的一部分(至少要降低语法)。无论如何,我回答了我自己的问题。
我偶然发现的一次尝试中的主要和非常微妙的差异:
➤ date -I 'seconds'
date: invalid date 'seconds'
一头发脱了。它需要删除空间:
➤ date -I'seconds'
2017-07-09T17:29:54-0400
现在,busybox日期很开心。