bat命令,怎么实现替换文件中的内容 5
展开全部
更多追问追答
追问
还是 修改不了,只是在控制太打印了下set后边填的信息
追答
运行后会在当前目录下生成New.txt,里面是替换后的文本...
展开全部
XCOPY X1:\XXX1 X2:\XXX2说明: X1是指源文件夹所在的盘符如C、D XXX1是指你要复制的源文件夹 X2是指复制所到的目标盘符如E、F XXX2是指复制所到的目标文件夹举例: XCOPY C:\FILM D:\WU\PCV\2015 XCOPY D:\244\AK D:\FIL06\XW\7P
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@echo off
SETLOCAL EnableDelayedExpansion
cd %cd%
rem all xml file of current dir
for /R %%s in (*.xml) do (
echo %%s
rem 'exp/pano_editor' is old string,'%HTMLPATH%' is a new string
powershell -Command "(gc %%s) -replace 'exp/pano_editor', '%%HTMLPATH%%' | Out-File %%s"
)
@echo finished!
SETLOCAL DISABLEDELAYEDEXPANSION
SETLOCAL EnableDelayedExpansion
cd %cd%
rem all xml file of current dir
for /R %%s in (*.xml) do (
echo %%s
rem 'exp/pano_editor' is old string,'%HTMLPATH%' is a new string
powershell -Command "(gc %%s) -replace 'exp/pano_editor', '%%HTMLPATH%%' | Out-File %%s"
)
@echo finished!
SETLOCAL DISABLEDELAYEDEXPANSION
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询