是否可以使用 dd 从文件中提取几个字节?该文件位于辅助驱动器上。
如果这是一个简单的问题,我很抱歉,但我不是命令行专家。
答案1
如果这是file
:
hello world how are you today
然后这将从world
中提取file
:
dd bs=1 skip=6 count=5 if=file
它跳过 6 个字节 ( hello_
),读取 5 个字节 ( world
),并忽略其余部分。
因此,使用skip
、count
、 和bs=1
(或者,当使用 GNU dd 时,使用 count_bytes/skip_bytes 标志),您可以以字节分辨率提取特定的字节范围。