02-对比两个文件的差异

Posted 每天进步一点点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了02-对比两个文件的差异相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python
#coding=utf8
"""
# Author: xiaoyafei
# Created Time : 2018-04-04 17:14:20

# File Name: check_nginx_conf.py
# Description:

"""
import difflib
import sys

try:
    textfile1 = sys.argv[1]
    textfile2 = sys.argv[2]
except Exception,e:
    print "Error:"+str(e)
    print "Usage: check_Nginx_conf.py filename1 filename2"
    sys.exit()

def readfile(filename):
    try:
        fileHandle  = open(filename,rb)
        text = fileHandle.read().splitlines()       #读取后以进行分割
        fileHandle.close()
        return text 
    except IOError as error:
        print "Read file Error:"+str(error)
        sys.exit()

if textfile1 =="" or textfile2=="":
    print "Usage: check_Nginx_conf.py filename1 filename2"

text1_lines = readfile(textfile1)
text2_lines = readfile(textfile2)

d = difflib.htmlDiff()
print d.make_file(text1_lines,text2_lines)

 

以上是关于02-对比两个文件的差异的主要内容,如果未能解决你的问题,请参考以下文章

linux对比两个文件的差异

Beyond Compare如何比较文件内容的差异 如何对比文件内容的差异

快速对比两个文件的差异

快速对比两个文件的差异

代码差异化对比工具

Java对比两个文件的差异,并且输出新文件与旧文件的差异行数