Python - 从 ELF 文件获取 build-id

发布于 2024-12-09 06:17:59 字数 203 浏览 0 评论 0原文

我正在尝试从 ELF 文件(Linux 内核模块)中提取 build-id。 现在它正在使用:

subprocess.check_output(['eu-readelf', '-n', filename]).split()[-1]

我想知道是否有一种更Pythony的方法来达到相同的结果?

谢谢,亚历克斯。

I'm trying to extract the build-id from and ELF file (Linux kernel module).
Right now it's using:

subprocess.check_output(['eu-readelf', '-n', filename]).split()[-1]

I was wondering is there's a more pythony way to achieve the same result?

Thanks, Alex.

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

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

发布评论

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

评论(1

倾城月光淡如水﹏ 2024-12-16 06:17:59

正如您所做的那样,从 python 调用 eu-readelf 命令是最优雅、最易读的方法。由于Python强调可读性,我认为这是最Pythonic的方法。

Calling the eu-readelf command from python, as you have done, is the most elegant and readable approach. Since python stresses readability, I'd say this is the most Pythonic approach.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文