文件名称:二进制bin文件分割、填充器: BinCut
文件大小:160KB
文件格式:EXE
更新时间:2023-04-14 13:46:54
二进制文件 分割 嵌入式 bin文件 填充
使用方法: 1、在bin文件首部填充字符: bincut -a [filename] [char] [length] bincut -a [文件名] [填充字符] [填充长度(10/16进制)] 例: bincut -a test.bin 10 0x1000 在test.bin的首部填充4096个10,文件长度增加字节 bincut -a test.bin 22 300 在test.bin的首部填充300个22,文件长度增加300字节 =========================================== 2、二进制文件分割: bincut -s [filename] [length] bincut -s [文件名] [分割长度(10/16进制)] 例: bincut -s test.bin 0x1000 将test.bin按每个文件4096个字节的长度分割,文件名自动加-1、-2、-3 bincut -s test.bin 300 将test.bin按每个文件300个字节的长度分割,文件名后自动加-1、-2、-3 ==================================================