Python - 从 ELF 文件获取 build-id
我正在尝试从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您所做的那样,从 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.