摘要: #!/bin/sh #需要计算MD5文件列表 # list=`ls` list="file list" for file in $list do file1=`find . -name $file | tail -n 1` echo "$file1" md5sum $file1 >> ./md5sum.txt done 阅读全文
posted @ 2018-08-23 14:58 Malphite 阅读(824) 评论(0) 推荐(0) 编辑