生成整个目录中文件md5:

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

根据已生成的md5值,对现存文件进行校验:

1
md5sum -c allfiles.md5