查找当前目录的重复文件

find . /! -type d -exec md5sum '{}' ';' | sort | uniq -D -w 32  

 

TODO: how to find files in compressed files, eg: zip,rar,7z,gz,tar,....

你可能感兴趣的:(查找当前目录的重复文件)