xxxsum 系列命令只能对单个文件进行处理,需要批量目录处理可如下操作:
计算:
find ./ -type f -print0 | xargs -0 md5sum > ./my.md5
检查: md5sum -c my.md5