Windows bat脚本学习七(从hex文件中获取bin大小)
一、简介
有关hex文件的介绍,直接参考这篇文章:Hex文件解析_hex文件详解-CSDN博客
二、代码
废话不多,直接上代码:
@echo off
chcp 65001
setlocal enabledelayedexpansion
set code=0123456789ABCDEF
set hex_file=origin.hex
if exist %hex_file% (
echo 正在计算,请稍等。。。。。
) else (
echo %hex_file%不存在
pause
)
set /a more_flag=0
for /f "delims=:" %%a in (%hex_file%) do (
set str=%%a
:: 前2个字符是长度
set len=!str:~0,2!
:: 前6-7个字符是类型
set tp=!str:~6,2!
:: 00表示是数据内容
if "!tp!"=="00" (
:: 计算行号
set /a cnt=!cnt!+1
rem 计算长度。不能通过这种方式来计算总长度。这样有个问题,就是如果地址是不连续的,长度就会偏小。
rem set /a count_len+=0x!len!
:: 第3-6个字符是偏移地址
set /a offset=0x!str:~2,4!
:: 获取第一个偏移地址
if !more_flag! equ 0 (
set /a more_flag=2
set /a