md5sum

目录下所有文件md5值

find models -type f -print0 | xargs -0 md5sum > md5/models.md5

# or

find models -type f -not \( -name '.*' \) -exec md5sum {} \;

查找 MD5 值相同的文件

# 不包括子目录
md5sum *|sort  |uniq -w32  -D|awk -F ' ' '{print $1 "    " $2}'

# 包括子目录
find . -type f -exec md5sum {} + | sort | uniq -w32 -D | awk '{print $1 "    " $2}'
Table of Contents