在 windows cmd 中查找两个文本文件之间的交集
Finding intersection between two text files in windows cmd
windows 上是否有任何命令可以找到两个文本文件之间的交集?
示例:
File1.txt File2.txt
Apple Pie
Banana Apple
Pie
输出:
Pie
Apple
findstr /i /L /x /g:"File1.txt" "file2.txt"
应该能很好地做到这一点。
它在文件 2 中找到所有 /x
完全匹配 /L
字面 /i
但忽略大小写 /g:file
的字符串
windows 上是否有任何命令可以找到两个文本文件之间的交集?
示例:
File1.txt File2.txt
Apple Pie
Banana Apple
Pie
输出:
Pie
Apple
findstr /i /L /x /g:"File1.txt" "file2.txt"
应该能很好地做到这一点。
它在文件 2 中找到所有 /x
完全匹配 /L
字面 /i
但忽略大小写 /g:file
的字符串