比较两个TXT文本的不同写入3.txt

将1.txt与2.txt比较不同的部分,然后将不同的部分写入3.txt

 

 

@echo off
for /f %%i in ('findstr . 1.txt') do (
     find "%%i" 2.txt || echo 1:%%i >>3.txt
)
for /f %%x in ('findstr . 2.txt') do (
     find "%%x" 1.txt || echo 2:%%x >>3.txt
)

你可能感兴趣的:(比较两个TXT文本的不同写入3.txt)