gpt4 book ai didi

shell - 逐行比较两个文件并在另一个文件中生成差异

转载 作者:行者123 更新时间:2023-12-03 04:39:12 25 4
gpt4 key购买 nike

我想比较 file1 和 file2 并生成一个 file3,其中包含 file1 中不存在于 file2 中的行。

最佳答案

diff(1) 不是答案,但 comm(1) 才是。

NAME
comm - compare two sorted files line by line

SYNOPSIS
comm [OPTION]... FILE1 FILE2

...

-1 suppress lines unique to FILE1

-2 suppress lines unique to FILE2

-3 suppress lines that appear in both files

所以

comm -2 -3 file1 file2 > file3

输入文件必须排序。如果不是,请先对它们进行排序。这可以通过临时文件来完成,或者...

comm -2 -3 <(sort file1) <(sort file2) > file3

前提是您的 shell 支持进程替换(bash 支持)。

关于shell - 逐行比较两个文件并在另一个文件中生成差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4544709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com