Board logo

标题: [文本处理] [分享]批处理替换文本中包含指定字符的行 [打印本页]

作者: Batcher    时间: 2023-7-2 10:13     标题: [分享]批处理替换文本中包含指定字符的行

【问题描述】

要替换掉这行:
tempAuthPassEx=

替换成:
tempAuthPassEx=1


作者: Batcher    时间: 2023-7-2 10:13

【解决方案】

test-1.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. (for /f "delims=" %%i in ('type "config.ini"') do (
  5.     set "StrRow=%%i"
  6.     if "!StrRow:tempAuthPassEx=!" neq "%%i" (
  7.         echo tempAuthPassEx=1
  8.     ) else (
  9.         echo,%%i
  10.     )
  11. ))>"config_new.ini"
  12. move /y "config_new.ini" "config.ini"
复制代码

作者: Batcher    时间: 2023-7-2 10:16

test-2.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. powershell "(Get-Content config.ini) -Replace '(tempAuthPassEx)=.*','$1=1'" >"config_new.ini"
  4. move /y "config_new.ini" "config.ini"
复制代码

作者: Batcher    时间: 2023-7-2 10:20

test-3.bat
http://bcn.bathome.net/s/tool/index.html?key=sed
  1. @echo off
  2. cd /d "%~dp0"
  3. sed -i -r "s/^(tempAuthPassEx)=.*/\1=1/" config.ini
复制代码





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