-
BinCut:二进制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
==================================================