You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
265 B
17 lines
265 B
4 months ago
|
echo off
|
||
|
for /F "tokens=1,* delims==" %%a in (%1) do (
|
||
|
if "%%b"=="%2;" (
|
||
|
echo inside if
|
||
|
echo %%a=%3;>> %1.tmp
|
||
|
) else (
|
||
|
echo inside else
|
||
|
if "%%b"=="" (
|
||
|
echo inside else if
|
||
|
echo %%a>> %1.tmp
|
||
|
) else (
|
||
|
echo inside last else
|
||
|
echo %%a=%%b>> %1.tmp
|
||
|
))
|
||
|
)
|
||
|
move /Y %1.tmp %1
|