В зависимости от вашей ситуации, вы можете подходить к этому по-разному. Я бы прислушался к совету Райхана, если это применимо в вашей рабочей среде. Если применимо, вы также можете сделать замену в VIM. Если вам необходимо использовать пакетный скрипт, это должно помочь, хотя он не в моей голове и может потребовать некоторой настройки с вашей стороны, так как у вас нет машины с Windows для его проверки:
setlocal enabledelayedexpansion
set new_file=your_new_or_temporary_file.txt
set name_of_your_txt_file_of_replacements=your_replacements_file_name.txt
set name_of_your_txt_file_of_content_to_replace=your_file_of_content_to_replace.txt
if EXIST "!new_file!" del "!new_file!"
for /f 'eol=; tokens=1,2 delims=,' %%l in ('type "!name_of_your_txt_file_of_replacements!"') do (
set existing_text=%%l
set replacement_text=%%i
@REM: Based on your example you will have trailing and leading blanks
@REM: See this site to trim your existing_text and replacement_text
@REM: Source: http://www.dostips.com/DtTipsStringManipulation.php
for /f "tokens=* delims= " %%a in ("!replacement_text!") do set replacement_text=%%a
for /l %%a in (1,1,31) do (
if "!existing_text:~-1!"==" " set existing_text=!existing_text:~0,-1!
if "!replacement_text:~-1!"==" " set replacement_text=!replacement_text:~0,-1!
)
echo replacing !existing_text! with !replacement_text!...
for /f 'eol=; tokens=1 delims=' %%c in ('type "!name_of_your_txt_file_of_content_to_replace!"') do (
set line=%%c
for /f 'eol=; tokens=1 delims=' %%c in ('echo !line! ^| findstr /i /c:"!existing_text!"') do (
for /f 'eol=; tokens=1,2 delims=,' %%c in ("!existing_text!,!replacement_text!") do
set line=!line:%%c=%%d!
)
@REM::Just reread your specs, and if you want the new file to just contain
@REM:: the replacement text, then do this instead:
@REM:: echo !replacement_text! >> !new_file!
@REM::Otherwise, copy of existing file with updated text
echo !line! >> !new_file!
)
)
@REM:: Compare your original file with !new_file! and make sure it is all good.
@REM:: Once you have to code to where it is all good do this
mv "!new_file!" "!name_of_your_txt_file_of_content_to_replace!"
Если у вас возникнут проблемы, дайте мне знать. Удачи! :)