使用 Linux 比较两个大文件?



file1:

asd
1
asdfg
2
asdasd

文件 2:

asd
asdfg
asdasd
123
12333

预期成果

1
2

当前结果

1
2
123
12333

awk:

awk 'NR==FNR{lines[$0];next} !($0 in lines)' file1 file2
awk 'NR==FNR{lines[$0];next} !($0 in lines)' file1 file2

如上所示,当前结果是所有重复数据。

comm -23 --nocheck-order file1 file2

相关内容

  • 没有找到相关文章

最新更新