通过Shell脚本删除指定目录下重复文件
在运维过程中经常遇到文件名不一样但Md5值一样的文件,所以提供以下脚本食用: ```lang-bash #!/bin/bash #重复文件删除 # Author: admin@lolicp.com #查询目录 File_Path=$1 Md5_Info=`md5sum ${File_Path}/* ` Repeat_Code=`echo "${Md5_Info}&q...
在运维过程中经常遇到文件名不一样但Md5值一样的文件,所以提供以下脚本食用: ```lang-bash #!/bin/bash #重复文件删除 # Author: admin@lolicp.com #查询目录 File_Path=$1 Md5_Info=`md5sum ${File_Path}/* ` Repeat_Code=`echo "${Md5_Info}&q...