当我们维护多个Nginx配置文件时,时常会对比不通版本配置文件的差异,使运维人员更加清晰的了解不通版本迭代后的更新项,实现的思路是读取两个需对比的配置文件,再以换行符作为分隔符,调用difflib.HtmlDiff()生产HTML格式的差异文档。实现的代码如下:
[root@localhost ~]# cat diff.py
#!/usr/bin/python
#coding:utf-8
import difflib
import sys
try:
#第一个配置文件路径参数
textfile1=sys.argv\[1\]
#第二个配置文件路径参数
textfile2=sys.argv\[2\]
except Exception,e:
print "Error:"+str(e)
print "Usage: simple3.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: diff.py filename1 filename2 \>diff.html"
sys.exit()
#调用readfile函数,获取分隔后的字符串
text1_lines = readfile(textfile1)
text2_lines = readfile(textfile2)
#创建HtmlDiff()类对象
d = difflib.HtmlDiff()
#通过make_file方法输出HTML格式的比对结果
print d.make_file(text1_lines, text2_lines)
[root@localhost ~]# python diff.py nginx.conf nginx.conf1 >diff.html
[root@localhost ~]# \cp diff.html /usr/local/nginx/html/
#运行结果如下:
历史上的今天
11 月
15
- 2023Linux中&和&&和管道符|和逻辑运算符||及分号;的用法
- 2020Docker安装Nexus 3私服仓库 Python最后更新:2024-1-25