bash 中可以使用纳秒的 strftime 吗?
有没有办法在 bash 中使用 strftime 获取纳秒级的 Unix 时间?
我的 unix 时间行:
<command> | awk '{ print strftime("%s"), $0; }'
我不能使用 date +%N 因为 date 只计算一次。
有什么解决办法吗?
Is there any way to obtain Unix Time with nanoseconds with strftime in bash?
My line for unix time :
<command> | awk '{ print strftime("%s"), $0; }'
I cannot use date +%N because date is only evaluated once.
Is there any work around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了使用 while read 的解决方法。日期以这种方式更新。不需要 strftime。
I found a workaround using while read. date gets updated that way. No need for strftime.
您仍然可以使用
date
只是输出中没有 %...(但您也可以解决这个问题)
You could still use
date
Just do not have % in your output... (but you can work around that too)