Contents

Linux递归生成各文件的的MD5值

Contents

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

md5sum -c /tmp/md5.txt