现在的位置: 首页 > 综合 > 正文

bat 修改文件内容

2018年10月17日 ⁄ 综合 ⁄ 共 317字 ⁄ 字号 评论关闭

@echo off
rem cmd /utf-8
chcp 65001
color 0a
setlocal enabledelayedexpansion

for /f "delims=" %%a in (skyform.framework.menubar.js) do (

set t=%%a
set t=!t:topoPath="http://10.10.182.34:8080";!
echo !t!
echo !t! >> sss.js

)

for /f "delims=" %%a in (sss.js) do (

set t=%%a
rem if !t!==ECHO is off. (echo  >> ddd.js)
set t=!t:ECHO is off.=//!
echo !t!
echo !t! >> ddd.js

)

pause

抱歉!评论已关闭.