比较2个文本文件并显示它们之间的差异(PowerShell或CMD)

时间:2015-06-10 18:26:34

标签: powershell command-line cmd command

我有2个文本文件 text1.txt包含:

fc1/1 storage
fc1/5 switch
fc1/7 replication

text2.txt包含:

fc1/1 storage
fc1/5 nas
fc1/7 replication

我想要一个脚本,用于比较2个文本文件,并在名为text2.txt

的文本文件中生成text1.txt但不在difference.txt上的文本

difference.txt包含

fc1/5 nas

任何想法?

1 个答案:

答案 0 :(得分:1)

也许......

findstr /v /g:text1.txt text2.txt  > difference.txt

text2.txt

中搜索/v不匹配(text1.txt)行的行