首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > windows >

求1bat指令写法,高手来

2012-12-16 
求一bat指令写法,高手来。c:\1.txt内容:.........body........需要一指令 将谢谢 写入并存为 2.txt2.tx

求一bat指令写法,高手来。
c:\1.txt   内容:

....
.....
<body>
....
....



需要一指令 将  "谢谢" 写入并存为 2.txt

2.txt

....
.....
<body>
谢谢
....
....

[最优解释]
[code=BatchFile]@(for /f "delims=" %%a in ('findstr /n .* c:\1.txt') do @(
  set "line=%%a"
  setlocal enabledelayedexpansion
  set "line=!line:*:=!"
  echo.!line!
  if "!line!"=="<body>" echo 谢谢
  endlocal
))>c:\2.txt[/code]

热点排行