Learn Python automated operations Diff-nginx comparison

Source: Internet
Author: User

    1. HTML to compare Nginx configuration file and backup Ngixn different

#!/usr/bin/env python


Import Difflib

Import Sys


Try

Textfile1 = sys.argv[1]

Textfile2 = sys.argv[2]


Except Exception,e:

Print "Error:" +str (E)

Print "Usage:diff_nginx.py filename1 filename2"

Sys.exit ()



def readline (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_nginx.py filename1 filename2"

Sys.exit ()


Text1_lines = ReadLine (textfile1)

Text2_lines = ReadLine (textfile2)


D = difflib. Htmldiff ()

Print D.make_file (Text1_lines, Text2_lines)


Learn Python automated operations Diff-nginx comparison

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.