Python 的 hexdump
函数本身不能直接保存结果,但你可以将输出重定向到一个文件或字符串中,以便稍后保存或处理。以下是一个示例,展示了如何使用 subprocess
模块运行 hexdump
并将其输出保存到文件中:
import subprocess
# 要分析的字符串
data = b"Hello, World!"
# 使用 hexdump 命令并将输出保存到文件
with open("output.txt", "w") as output_file:
subprocess.run(["hexdump", "-C"], input=data, stdout=output_file)
在这个示例中,我们首先将要分析的字符串 data
定义为字节串。然后,我们使用 subprocess.run()
函数运行 hexdump
命令,并将输出重定向到名为 output.txt
的文件中。-C
选项表示以十六进制和ASCII字符显示输出。