查找具有相同MD5的文件位于同一子目录中

时间:2016-04-07 08:45:59

标签: linux bash shell find duplicates

我有以下命令:

find myfolder -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 15 > dupes.txt

创建一个文件dupes.txt,其中包含myfolder目录中所有重复的图像。

我的目录结构如下所示:

/myfolder
 |- /1
 |- /2
 |- /..
 |- /20000

问题是目前它列出了相同的图像,即使它们处于不同的子目录中。

我需要的是它只在相同的子目录中搜索。为了达到这个目的,我如何调整commoand?

1 个答案:

答案 0 :(得分:0)

解决方案实际上是:

find data-aligned -type d -exec fdupes -dN {} \;

写在我对问题的评论中。