Board logo

标题: [文本处理] 用bat修改ini配置文件指定内容 [打印本页]

作者: lyidxc    时间: 2022-10-4 20:52     标题: 用bat修改ini配置文件指定内容

用bat修改ini配置文件指定内容
输入不保存
@echo off&cd /d "%~dp0"
rem 修改一个ini文件里的指定行内容

title
set "inifile=a.ini"
if not exist "%inifile%" (echo;"%inifile%" path error or not exists&pause&exit)
set user=&set /p user=enter the user:
set linenum=&for /f "delims=:" %%a in ('type "%inifile%"^|findstr /nb /c:"user="') do set "linenum=%%a"
if defined linenum (
    for /f "tokens=1* delims=:" %%a in ('type "%inifile%"^|findstr /n .*') do (
        if "%%a" equ "%linenum%" (
            echo;user=%user%
        ) else echo;%%b
    )
)

pause
exit
作者: lyidxc    时间: 2022-10-4 23:27

)>"%temp%\~gprex~"
move /y "%temp%\~gprex~" a.ini

问题已解决




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2