shell脚本将日期转换为十六进制格式

发布于 2024-12-21 06:51:09 字数 319 浏览 0 评论 0原文

我有一个工具需要十六进制格式的时间。

假设如果 date -d "Thu Sep 15 09:13:05 UTC 2011" +%s -u 给出的时间(以秒为单位)为 1316077985,则 的十六进制值应该找到 >1316077985 (即 4E71C1A1),并将其作为工具的输入给出

/usr/bin/mytool 0xA1 0xC1 0x71 0x4E

如果可以以秒为单位的时间作为输入,如何在 shell 脚本中执行此操作?

I have a tool which requires the time in hex format.

Suppose if date -d "Thu Sep 15 09:13:05 UTC 2011" +%s -u gives the time in seconds as 1316077985, the hex value of 1316077985 which is 4E71C1A1 should be found and it should be given as input to the tool as

/usr/bin/mytool 0xA1 0xC1 0x71 0x4E.

How can do this in shell script if the time in seconds is available as input?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦在深巷 2024-12-28 06:51:09

像这样的东西应该适合你:

hex=$(printf '%X' 1316077985)
/usr/bin/mytool  0x${hex:6:2} 0x${hex:4:2} 0x${hex:2:2} 0x${hex:0:2}

Something like this should work for you:

hex=$(printf '%X' 1316077985)
/usr/bin/mytool  0x${hex:6:2} 0x${hex:4:2} 0x${hex:2:2} 0x${hex:0:2}
吾性傲以野 2024-12-28 06:51:09

我有一个解决方案,但它是 perl,而不是 shell:

fg@erwin ~/src/json-schema-validator $ date +%s | perl -e 'my $num = <STDIN>; my @hex; while ($num) { push @hex, sprintf("0x%02x", $num & 0xff); $num >>= 8; } print join(", ", reverse @hex) . "\n"'
0x4e, 0xe9, 0xec, 0x88

I have a solution but it is perl, not shell:

fg@erwin ~/src/json-schema-validator $ date +%s | perl -e 'my $num = <STDIN>; my @hex; while ($num) { push @hex, sprintf("0x%02x", $num & 0xff); $num >>= 8; } print join(", ", reverse @hex) . "\n"'
0x4e, 0xe9, 0xec, 0x88
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文