两个文件中的匹配列

发布于 2024-09-06 06:34:26 字数 225 浏览 5 评论 0原文

我有两个文件,其中第一列可能具有相同的值。我想匹配两个文件的第一列,并打印 FILE1 中匹配的行。

FILE1:
xxx1 yyy yyy yyy
xxx2 yyy yyy yyy
xxx3 yyy yyy yyy

FILE2:
xxx3 zzzz
xxx4 zzzz

OUTPUT:
xxx3 yyy yyy yyy

欢迎任何建议。

最好的祝愿

I have two files, in which the first column of them might have same values. I would like to match the first column of both files, and print the lines in FILE1 for which there was a match.

FILE1:
xxx1 yyy yyy yyy
xxx2 yyy yyy yyy
xxx3 yyy yyy yyy

FILE2:
xxx3 zzzz
xxx4 zzzz

OUTPUT:
xxx3 yyy yyy yyy

Any suggestions are welcomed.

Best wishes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

错爱 2024-09-13 06:34:26
awk 'FNR==NR{ a[$1]=$0;next } ($1 in a)' file2 file1
awk 'FNR==NR{ a[$1]=$0;next } ($1 in a)' file2 file1
浪推晚风 2024-09-13 06:34:26

这是我的秘诀:

awk 'key[$1]; FNR==NR {key[$1]=1}' file2 file1

我假设两个列表均按键(第一列)排序,并且每个键仅在文件中出现一次。第一个模式缩写为:

key[$1] != 0

在这种情况下,默认操作是打印整行。此模式隐式适用于第二个文件 (file1),因为对于第一个文件,密钥尚未标记。
在第二种模式中:

FNR==NR {key[$1]=1}

FNR==NR 意味着我们正在处理第一个文件(在本例中为 file2)。在这种情况下,我们标记该密钥以供以后参考。

Here is my recipe:

awk 'key[$1]; FNR==NR {key[$1]=1}' file2 file1

I assume that both lists are sorted by the key (first column) and each key only appears once in a file. The first pattern short for:

key[$1] != 0

In which case, the default action is to print the whole line. This pattern implicitly works for the second file (file1) only because for the first file, the key has not been marked.
In the second pattern:

FNR==NR {key[$1]=1}

The FNR==NR means we are processing the first file (file2 in this case). In this case, we mark the key for later reference.

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