diff files comparing only first n characters of each line

后端 未结 3 749
日久生厌
日久生厌 2021-02-19 05:30

I have got 2 files. Let us call them md5s1.txt and md5s2.txt. Both contain the output of a

find -type f -print0 | xargs -0 md5sum | sort > md5s.txt

3条回答
  •  萌比男神i
    2021-02-19 06:09

    If you are looking for duplicate files fdupes can do this for you:

    $ fdupes --recurse
    

    On ubuntu you can install it by doing

    $ apt-get install fdupes
    

提交回复
热议问题