How to count differences between two files on linux?

后端 未结 7 583
一整个雨季
一整个雨季 2020-12-23 13:45

I need to work with large files and must find differences between two. And I don\'t need the different bits, but the number of differences.

To find the number of dif

7条回答
  •  执念已碎
    2020-12-23 13:58

    diff -U 0 file1 file2 | grep -v ^@ | wc -l
    

    That minus 2 for the two file names at the top of the diff listing. Unified format is probably a bit faster than side-by-side format.

提交回复
热议问题