Board logo

标题: [文本处理] 【已解决】批处理怎样搜索子目录中html文件,并删除文件中的指定字符串? [打印本页]

作者: taofan712    时间: 2012-6-30 13:07     标题: 【已解决】批处理怎样搜索子目录中html文件,并删除文件中的指定字符串?

本帖最后由 taofan712 于 2017-2-14 16:27 编辑

有好几个文件夹,里面都有html文件。
然后需要把html文件中的指定字符串ABCDEF删除。
请求帮助,谢谢

=============
感谢2楼介绍的sed,现在我用这个代码解决了问题,谢谢了
  1. @echo off
  2. for /f "delims=" %%i in ('dir /s /b *.html') do (sed -i "s/abcdef/ /g" "%%i")
  3. pause
复制代码

作者: weichenxiehou    时间: 2012-6-30 13:22

  1. sed -i "s/ABCDEF//g" *\*.html
复制代码

作者: taofan712    时间: 2012-6-30 13:27

回复 2# weichenxiehou


    sed 命令?
需要去下载相关工具么
作者: weichenxiehou    时间: 2012-6-30 16:25

回复 3# taofan712
嗯,三方工具,需要下载,论坛里就有。
作者: forfiles    时间: 2012-6-30 18:11

回复 3# taofan712


http://www.bathome.net/thread-16975-1-1.html




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2