码迷,mamicode.com
首页 > 其他好文 > 详细

02-对比两个文件的差异

时间:2018-04-04 20:51:28      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:hand   文件   exception   error:   分割   name   lin   text   make   

#!/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-对比两个文件的差异

标签:hand   文件   exception   error:   分割   name   lin   text   make   

原文地址:https://www.cnblogs.com/xiaoyafei/p/8718597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!