差异/合并两个文件

发布于 2024-09-12 12:15:55 字数 223 浏览 4 评论 0原文

我有两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神经大条 2024-09-19 12:15:55

如果文件已排序,

join list1 list2

则将输出交集。

join -v 1 list1 list2

将仅输出 list1 中的内容。

join -v 2 list1 list2

将仅输出 list2 中的内容。

If the files are sorted then

join list1 list2

will output the intersection.

join -v 1 list1 list2

will output the ones that are in list1 only.

join -v 2 list1 list2

will output the ones that are in list2 only.

芸娘子的小脾气 2024-09-19 12:15:55

首先使用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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文