age: (whatever)
これにより、text.inf内のすべてのインスタンスが次のように置き換えられage: 30
ます。
for /f "tokens=1* delims=: " %%x in (text.inf) do (
if "%%x"=="age" (
echo %%x: 30 >> outfile.tmp
) else (
echo %%x: %%y >> outfile.tmp
)
)
move /y outfile.tmp text.inf
OK、あなたの新しいスペックはこれをより難しくします、しかし...
setlocal enabledelayedexpansion
set line=
for /f "tokens=* delims= " %%x in (text.inf) do call :workit %%x
move /y outfile.tmp text.inf
endlocal
goto :eof
:workit
set line=
:workitloop
set line=!line! %1
if "%1"=="age:" (
set line=!line! 30
shift
shift
goto :workitloop
) else if "%1"=="" (
echo !line:~1!>> outfile.tmp
) else (
shift
goto :workitloop
)
goto :eof