- 帖子
- 5
- 积分
- 19
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2014-12-10
|
[文本处理] 求帮助,批处理替换文本内容,同时处理/和\ 的问题
本帖最后由 136711443 于 2014-12-10 18:29 编辑
以下一段批处理是 修改配置文件httpd.conf 中 c:/server 固定路径 为软件实际安装路径
@echo off
cd %~dp0
set file="%cd%\Server\apache\conf\httpd.conf"
set "file=%file:"=%"
for %%i in ("%file%") do set "file=%%~fi"
echo.
set replaced=C:/Server
echo.
set all=%cd%
cd.>"%file%_tmp.conf"
setlocal enabledelayedexpansion
for /f "tokens=1* delims=:" %%i in ('findstr /n .* "%file%"') do (
set str=%%j
if not "!str!"=="" (
set "str=!str:%replaced%=%all%!"
Set "str=!str:\=/!"
)
>>"%file%_tmp.conf" echo.!str!
)
rem copy "%file%" "%file%_bak.conf" >nul 2>nul
move "%file%_tmp.conf" "%file%"
目前这个批处理可以处理此文件中的 c:/server 替换成实际安装路径如 d:/server2
但此配置文件中还有3行内容为:
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O"
通过批处理后变成了
LogFormat "%h %l %u %t /"%r/" %>s %b /"%{Referer}i/" /"%{User-Agent}i/"" combined
LogFormat "%h %l %u %t /"%r/" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t /"%r/" %>s %b /"%{Referer}i/" /"%{User-Agent}i/" %I %O"
请教大家 有什么好办法 ,让批替换时此处的杠保持不变。 谢谢! |
|