• Linux_Best Practice_03_VIM_file comparation


    vi Searching and Replacing

    vi also has powerful search and replace capabilities. To search the text of an open file for a specific string (combination of characters or words), in the command mode type a colon (:), "s," forward slash (/) and the search string itself. What you type will appear on the bottom line of the display screen. Finally, press ENTER, and the matching area of the text will be highlighted, if it exists. If the matching string is on an area of text that is not currently displayed on the screen, the text will scroll to show that area.

    The formal syntax for searching is:

    :s/string

    For example, suppose you want to search some text for the string "cherry." Type the following and press ENTER:

    :s/cherry

    The first match for "cherry" in your text will then be highlighted. To see if there are additional occurrences of the same string in the text, type n, and the highlight will switch to the next match, if one exists.

    The syntax for replacing one string with another string in the current line is

    :s/pattern/replace/

    Here "pattern" represents the old string and "replace" represents the new string. For example, to replace each occurrence of the word "lemon" in a line with "orange," type:

    :s/lemon/orange/

    The syntax for replacing every occurrence of a string in the entire text is similar. The only difference is the addition of a "%" in front of the "s".with confirmation "gic":

    :%s/pattern/replace/gic

    Thus repeating the previous example for the entire text instead of just for a single line would be:

    :%s/lemon/orange

    compare two files:

    http://www.toontricks.com/2018/04/ubuntu-how-to-compare-two-files.html

    1. diff file1 file2

    2. sudo apt-get install meld

    3. vimdiff file1 file2

    4. diffuse file1 file2

    5. compare.py file1 file2

     1 #!/usr/bin/env 
     2 import sys  
     3 file1 = sys.argv[1]; file2 = sys.argv[2]; outfile = sys.argv[3]    
     4 def readfile(file):      
     5     with open(file) as compare:
     6           return [item.replace("
    ", "").split(" ") 
     7     for item in compare.readlines():
     8     data1 = readfile(file1); data2 = readfile(file2)  
     9     mismatch = [item[0] for item in data1 if not item in data2]    
    10     with open(outfile, "wt") as out:      
    11         for line in mismatch:
    12               out.write(line+" has changed"+"
    ")  

    6. cmp -b file1 file2

  • 相关阅读:
    自动登录网站
    爬取梨视频
    爬虫介绍,request模块和代理ip
    数据结构与算法
    CMDB的总结
    自动化运维模块
    linux命令补充
    centos7的目录结构,文件系统常用的命令,vim编辑器
    linux配置网卡文件,xshell链接服务,快照,克隆,修改主机名
    flask的请求扩展,错误处理,标签和过滤器,中间件以及cbv的写法
  • 原文地址:https://www.cnblogs.com/tlfox2006/p/10053746.html
Copyright © 2020-2023  润新知