Board logo

标题: [其他] 批处理怎样删除文本文档里面的重复行? [打印本页]

作者: caiyukou    时间: 2011-6-21 08:19     标题: 批处理怎样删除文本文档里面的重复行?

怎麼實現對文本文檔裡刪除重複的行呢?如文本文檔1.txt,包含內容如下:
\\10.87.0.138\pefile\a.txt
\\10.87.0.138\pefile\a.txt
\\10.87.0.138\pefile\a.txt
\\10.87.0.138\pefile\a.txt
\\10.87.0.138\pefile\b.txt
\\10.87.0.138\pefile\c.txt
\\10.87.0.138\pefile\c.txt

怎麼去刪除重複的行,生成如下行呢?
\\10.87.0.138\pefile\a.txt
\\10.87.0.138\pefile\b.txt
\\10.87.0.138\pefile\c.txt
作者: batman    时间: 2011-6-21 08:22

本帖最后由 batman 于 2011-6-21 08:30 编辑
  1. @echo off
  2. (for /f "delims=" %%a in (1.txt) do (
  3.    if not defined "%%a" echo %%a&set ""%%a"=a"
  4. ))>new.txt
  5. start new.txt
复制代码
ps:去掉重复行的代码和贴子论坛实在是多,楼主为什么不搜索一下呢。。。
作者: caiyukou    时间: 2011-6-21 11:52

2# batman
謝謝版主的幫助和提示。
作者: Batcher    时间: 2011-6-21 20:31

批处理去除超大文本中的重复行
http://bbs.bathome.net/thread-4690-1-1.html




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