我有两个纯文本列表。其中一个列表包含了我过去邮寄的所有客户的电子邮件地址。另一个列表是我想邮寄的潜在客户列表。我发现这很难用英语解释,所以希望你一看下面的例子就会明白。
LIST A: List of customers I already sent email to (addresses from this list should never be outputted):
michael@aaa.nl
michael@bbb.nl
michael@ccc.nl
michael@ddd.nl (shouldn't be outputted, even though it is not in LIST B)
LIST B: List of customers I want to mail:
michael@aaa.nl (duplicate, exists in LIST A)
michael@bbb.nl (duplicate, exists in LIST A)
martin@ccc.nl (duplicate, domain ccc.nl exists in LIST A)
michael@fff.nl (not duplicate, I want to output this)
Result I want:
michael@fff.nl
有没有一个脚本/突击队(OSX或Linux(可以让它发挥作用?我希望你们能帮我?
我尝试了uniq和diff,但我不能只得到一个列表(B(的输出。
我刚刚在谷歌上搜索了compare two lists online tool
,发现了以下内容:http://www.listdiff.com/compare-2-lists-difference-tool
但它不比较域。这将需要在Node.js或Python或几乎任何东西中开发一个自定义脚本。我不认为有现成的脚本,但可以在几行代码中进行比较。。。