首先感谢您的关注。
我需要批处理脚本来添加<li>
到我使用的所有文本文件的开头和结尾。
@echo off
set h=<l>
setLocal EnableDelayedExpansion
for /f "tokens=* delims= " %%a in (input.txt) do (
set /a N+=1
echo %h%^%%a^a>>output.txt
)
但它只适用于 h=any text; 当 h=<li>
它不起作用时!请帮我。谢谢
首先感谢您的关注。
我需要批处理脚本来添加<li>
到我使用的所有文本文件的开头和结尾。
@echo off
set h=<l>
setLocal EnableDelayedExpansion
for /f "tokens=* delims= " %%a in (input.txt) do (
set /a N+=1
echo %h%^%%a^a>>output.txt
)
但它只适用于 h=any text; 当 h=<li>
它不起作用时!请帮我。谢谢