如何使用 Solaris shell 命令将日期显示为 YYYYMMDD_HH24?
20110216_00
20110216_01
...
20110216_23
20110217_00
..
等等
我尝试过
date +'%Y%m%d_%H'
,但它从来不以 00-23 格式开始,而是从 01-24 类似格式开始,因此我得到的小时部分总是不正确。
任何人都可以建议,我怎样才能超越o/p
20110216_00
20110216_01
...
20110216_23
20110217_00
..
and so on
I have tried with
date +'%Y%m%d_%H'
but it never starts with 00-23 format but from 01-24 like format, hence I get hour part always incorrect.
Can anybody suggest, how can I get above o/p
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过操纵小时部分来做到这一点。检查下面的片段。
它给出了
You can do it by manupulating the hour part. Check the snip below.
It gives
我在 SunOS 5.10 上尝试过,这有效!
您能告诉我们您使用的是哪种 Solaris 吗?
干杯!
I tried it on SunOS 5.10 This works !
Can you tell us which Solaris are you using ?
Cheers !
您使用的是 Solaris 的哪个版本?当地大约是 22:30,我看到:
在我看来,它使用了 0-23 几个小时。
What revision of Solaris are you using? It is roughly 22:30 locally and I see:
which looks to me like it is using 0-23 for hours.
您可以使用日期 -u +'%Y-%m-%d-%H'
you can use date -u +'%Y-%m-%d-%H'