求1bat指令写法,高手来

求一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]