整理文件比较的Shell脚本

问题

如何对不同环境生成的文件进行比较?

方案

通过对文件进行消息摘要计算,例如MD5,SHA-1,通过比较摘要来判断文件的一致性

脚本

md5sum例子,生成文件对应的md5码
$ls *.jar
weblogic.jar wlclient.jar
$ md5sum *.jar >> mymd5result.txt
$cat mymd5result.txt 
c97f8d9aae6ed2c93b5bede83320944b weblogic.jar
9cbc591f62173404c991d75b45f254b1 wlclient.jar

比较 文件md5码
#!/bin/sh




usage()
{
        echo "usage:'test.sh file1 file2' compare file md5 code"
}


if [ $# -ne 2 ];
then
   usage
   exit 1
fi


cat $1 | while read myline
do
   e0=`echo $myline |awk '{print $1}'`
   e1=`echo $myline |awk '{print $2}'`


   count=`grep $e1 $2|wc -l`


   if [ $count -ne 1  ] ;
   then
        echo "$e1 more than one time in $2"
        exit 1
   fi
   
   te1=`grep $e1 $2|awk '{print $2}' `
   te0=`grep $e1 $2|awk '{print $1}' `
   if [ "$e1"x = "$te1"x ];
   then   
        if [ "$te0"x = "$e0"x ] ;  
        then
           echo "file:"$e1" equals!"
        else    
           echo "file:"$e1" not equals!"
        fi
        
   else
        echo "file:"$e1" is not exist in $2"
   fi
done


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值