Я пытаюсь прочитать все файлы и заменить подстроки в нем.
когда я запускаю bat-файл, выполняется только первая команда
т.е. SET modified=!string:%oldstr1%=%newstr1%!
остальные 2 команды не выполняются
SET modified=!string:%oldstr2%=%newstr2%!
SET modified=!string:%oldstr3%=%newstr3%!
КОД КАК СЛЕДУЕТ
@echo off
setlocal enabledelayedexpansion
set LOCATION=D:\CODE_temp\RUNTIME_DATA\
set OUTTEXTFILE=test_out.txt
set oldstr1=workflow.actions
set newstr1=process.activities
set oldstr2=CallWorkflow
set newstr2=CallProcess
set oldstr3=SetWorkflowVariable
set newstr3=SetProcessVariable
FOR /r %LOCATION% %%x IN (*.txt) do (
FOR /f "tokens=1,* delims=¶" %%A in ('"type %%x"') do (
SET string=%%A
SET modified=!string:%oldstr1%=%newstr1%!
SET modified=!string:%oldstr2%=%newstr2%!
SET modified=!string:%oldstr3%=%newstr3%!
echo !modified! >> %OUTTEXTFILE%
)
del %%x
copy %OUTTEXTFILE% %%x
del %OUTTEXTFILE%
echo location %%x >> Enosh_log.txt
)