通过大小和MDF查找重复的文件


0

我正在编写脚本来搜索伪文件,并按大小然后按其MD5校验和对它们进行分组。

这是我的脚本:

find . -type f -printf "%s\n" | sort -rn | uniq -d | xargs -I{} -n1 find -type f -size {}c -print0 | xargs -0 md5sum | sort | uniq -w32 > ./dups.txt

我想确保我的脚本按大小和MD5正确生成了我的dups文件。

无论如何,我可以确保我的结果是正确的,还是请您帮我检查一下我的脚本并让我知道?

Answers:



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.