linux md5sum 常用用法
1.递归计算当前目录所有文件的MD5值并保存到tmp.txt中
find . -type f -exec md5sum {} \;|tee tmp.txt
2. 使用-c 选项对文件MD5进行校验
md5sum -c tmp.txt
1.递归计算当前目录所有文件的MD5值并保存到tmp.txt中
find . -type f -exec md5sum {} \;|tee tmp.txt
2. 使用-c 选项对文件MD5进行校验
md5sum -c tmp.txt