我有 OBN 格式的二进制文件。要将其转换为基于文本的文件,我使用 unix 中的命令,例如-
dd if=FileName.OBN of=Output.txt ibs=1169 obs=1169 cbs=1169 conv=ascii
在哪里 -
if : is input file
of : is output file
ibs: input block size obs: output
block size cbs: new line insert at
block size conv: convert to
编辑后,如何在不破坏格式的情况下将其转换回原始格式?
谢谢你。