如何将“2010-10-08 00:00:01”的时间格式转换为“2010-10-08 00:00:01”至“1286467201”在 awk 中
在awk中,有没有办法将时间格式从“2010-10-08 00:00:01”转换为1286467201
与使用命令“date”一样
$ 日期 +%s -d '2010-10-08 00:00:01'
1286467201
In awk, Is there a way to convert the time format from "2010-10-08 00:00:01" to 1286467201
as using the command "date"
$ date +%s -d '2010-10-08 00:00:01'
1286467201
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GNU awk 有一个 mktime 函数可以完成这项工作。然而,了解时区至关重要。字符串“2010-10-08 00:00:01”不包含足够的信息来定义特定时间。如果你假设它是 UTC,你可以这样做:
如果你不指定 TZ 变量,你最终会得到服务器的时区(无论如何应该是 UTC,但很多人在服务器上使用本地时间,所以它不是一个安全假设)。
您可以通过稍微更改 date 命令来获取 UTC 输出:
GNU awk has a mktime function that can do the job. However, it's crucial to be aware of timezones. The string "2010-10-08 00:00:01" does not contain enough information to define a specific time. If you assume it is in UTC you can do:
If you don't specify the TZ variable you end up with the server's time zone (which should be UTC anyway, but a lot of folks use local time on servers, so it's not a safe assumption).
You can get UTC output from your date command by altering it slightly: