Board logo

标题: [文本处理] [已解决]请教两个txt内容重复筛选的批处理 [打印本页]

作者: fire999999999    时间: 2015-4-2 12:45     标题: [已解决]请教两个txt内容重复筛选的批处理

本帖最后由 fire999999999 于 2015-9-18 22:43 编辑

请教高手
例如:
-----------------------
a.txt内容:
1a
2c
d3
1t
-----------------------
b.txt内容:
bf
2x
2c
5ss
1a
-------------------------
校验两个txt,把a.txt里的内容在b.txt里重复的删除
这样的批处理代码怎么写?
作者: pcl_test    时间: 2015-4-2 13:11

回复 1# fire999999999
  1. @echo off
  2. for /f "delims=" %%a in ('type "a.txt"') do (
  3. (for /f "delims=" %%b in ('type "b.txt"') do (
  4. if "%%a" equ "%%b" set %%b=def
  5. if not defined %%b echo,%%b
  6. ))>$
  7. move $ "b.txt" >nul
  8. )
  9. pause
复制代码

作者: fire999999999    时间: 2015-4-2 13:17

回复 2# pcl_test


    你是高手,高手做事,干脆利落,
作者: bailong360    时间: 2015-4-2 22:46

问题解决后,请编辑顶楼帖子在标题前面注明[已解决],并给回答者加分。
http://www.bathome.net/thread-3473-1-1.html




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