差异/合并两个文件
我有两个 IP 地址列表。我需要将它们合并为三个文件,即交集、仅来自 list1 的文件和仅来自 list2 的文件。
我可以使用 awk/diff 或任何其他简单的 unix 命令来完成此操作吗?如何?
这些文件看起来像这样:
111.222.333.444
111.222.333.445
111.222.333.448
谢谢!
I have two lists of IP addresses. I need to merge them into three files, the intersection, those from list1 only and those from list2 only.
can I do this with awk/diff or any other simple unix command? How?
The files look like this:
111.222.333.444
111.222.333.445
111.222.333.448
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果文件已排序,
则将输出交集。
将仅输出 list1 中的内容。
将仅输出 list2 中的内容。
If the files are sorted then
will output the intersection.
will output the ones that are in list1 only.
will output the ones that are in list2 only.
首先使用sort对它们进行排序,然后就可以使用comm。
路口:
comm -12 <文件1>;
仅列出 1:
comm -23 <文件1>;
仅列出 2
comm -13 <文件1>; <文件2>
First sort them, using sort, and then you can use comm.
Intersection:
comm -12 <file1> <file2>
List 1 Only:
comm -23 <file1> <file2>
List 2 Only
comm -13 <file1> <file2>