亲宝软件园·资讯

展开

shell对比文件 shell对比文件内容脚本分享

人气:0
想了解shell对比文件内容脚本讲解的相关内容吗,在本文为您仔细讲解shell对比文件的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:shell,对比文件,下面大家一起来学习吧。

复制代码 代码如下:

#!/bin/sh
function _diffab(){
x=0
for i in `cat $1`;do
        for j in `cat $2`;do
                if [ $i == $j ];then
                        x=1
                        break;
                fi
        done
                if [ $x -ne 1 ];then
                        echo $i
                fi
        x=0
done
}


if [ "$1" == "" ] || [ "$2" == "" ];then
echo "use like this: $0 filea fileb"
else
{
_diffab $1 $2
_diffab $2 $1
}
fi

加载全部内容

相关教程
猜你喜欢
用户评论