MD5 校验

对文件夹进行md5计算

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

对文件夹进行校验

md5sum -c md5.md5 | grep -v 成功

以上操作均在./下进行