美文网首页
Linux命令之sed

Linux命令之sed

作者: 郭之源 | 来源:发表于2018-05-01 23:53 被阅读29次

    sed是一种流编辑器,他是文本处理中的工具,能够完美配合正则表达式使用。处理时,把当前处理的行存储在临时缓存区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区中的内容送往屏幕。接着处理下一行,这样不断重复,直至文件结尾。

    1.命令语法

    sed [options] 'command' file(s)
    sed [options] -f scriptfile file(s)

    2.命令选项

    [root@vm3 test]# cat test1.txt 
    12
    123
    12344
    123445
    
    2.1替换操作s命令

    s命令可以替换指定的内容
    语法 '/s/要替换的值/新值/[其他命令]'

    [root@vm3 test]# sed 's/1234/****/' test1.txt 
    12
    123
    ****4
    ****45
    

    -n选项和-p命令一起用表示打印那些发生替换的行

    [root@vm3 test]# sed -n 's/1234/****/p' test1.txt 
    ****4
    ****45
    

    直接替换源文件的值可以使用-i选项,将源文件中每行第一个1234替换成

    [root@vm3 test]# sed -i 's/1234/****/' test3.txt 
    [root@vm3 test]# cat test3.txt 
    12
    123
    ****4
    ****45
    
    2.2全面替换标记g

    使用后缀/g命令。替换每一行所有的匹配

    [root@vm3 test]# sed 's/4/0/g' test1.txt 
    12
    123
    12300
    123005
    

    如果想从第N个匹配开始替换,可以使用/Ng

    [root@vm3 test]# sed 's/4/0/2g' test1.txt 
    12
    123
    12340
    123405
    
    2.3定界符

    上面我们一直使用的定界符是/,不过定界符可以是任意的的

    [root@vm3 test]# sed 's:1234:***:' test1.txt 
    12
    123
    ***4
    ***45
    [root@vm3 test]# sed 's|1234|****|' test1.txt 
    12
    123
    ****4
    ****45
    [root@vm3 test]# sed 's1\12341****1' test1.txt 
    12
    123
    ****4
    ****45
    

    如果样式中要使用定界符,可以使用\进行转义,上面就是使用1作为定界符

    2.4删除操作:d命令
    [root@vm3 test]# cat test1.txt 
    12
    
    123
    
    12344
    
    123445
    

    删除空白行

    [root@vm3 test]# sed '/^$/d' test1.txt 
    12
    123
    12344
    123445
    

    删除文件第二行

    [root@vm3 test]# sed '2d' test1.txt 
    12
    123
    
    12344
    
    123445
    

    删除第二行及其后面的行(也就是只保留第一行,是不是闲的,哎,为了演示效果嘛)

    [root@vm3 test]# sed '2,$d' test1.txt 
    12
    

    删除文件最后一行

    [root@vm3 test]# sed '$d' test1.txt 
    12
    
    123
    
    12344
    
    

    删除文件中所有开头1234的行

    [root@vm3 test]# sed '/^1234/d' test1.txt 
    12
    
    123
    
    
    [root@vm3 test]# 
    
    2.5已匹配字符串标记&

    正则表达式\w+匹配没有个单词,使用[&]替换它,&对应之前所匹配到的单词:

    [root@vm3 test]# echo Can you speak Chinese ! | sed 's/\w\+/[&]/g'
    [Can] [you] [speak] [Chinese] !
    [root@vm3 test]# 
    
    2.6子串匹配标记

    匹配给定样式的其中一部分:

    [root@vm3 test]# echo Can you speak Chinese! | sed 's/Can you \(\w\+\)/\1/' 
    speak Chinese!
    

    将Can you speak替换成speak。示例中匹配到的是speak单词,(...)用于匹配子串,\1表示第一个匹配到的子串,\2表示匹配到的第二个子串

    [root@vm3 test]# echo 1234567890 | sed 's/123\([0-9]\)567\([0-9]\)/\1 \2/'
    4 890
    
    2.7组合表达式
    [root@vm3 test]# sed 's/java/JAVA/g' test2.txt | sed 's/shell/SHELL/g'
    JAVA
    scala
    js
    python
    ruby
    SHELL
    lua
    [root@vm3 test]# sed 's/java/JAVA/g;s/shell/SHELL/g' test2.txt 
    JAVA
    scala
    js
    python
    ruby
    SHELL
    lua
    
    2.8引用

    sed表达式可以使用单引号来引用,但是表达式内部包含变量字符串,就需要使用双引号

    [root@vm3 test]# echo hello WORLD | sed "s/$test/HELLO/"
    HELLO WORLD
    
    2.9选定行范围:,(逗号)

    所在模板scala和shell所以确定范围内的行都被打印出来

    [root@vm3 test]# cat test2.txt 
    java
    scala
    js
    python
    ruby
    shell
    lua
    [root@vm3 test]# sed -n '/scala/,/shell/p' test2.txt 
    scala
    js
    python
    ruby
    shell
    

    打印从3行到第一个以shell开始的行

    [root@vm3 test]# sed -n '5,/^shell/p' test2.txt 
    ruby
    shell
    

    对于scala和shell之间的行,每行结尾用aaa bbb替换

    [root@vm3 test]# sed '/scala/,/shell/s/$/aaa bbb/' test2.txt 
    java
    scalaaaa bbb
    jsaaa bbb
    pythonaaa bbb
    rubyaaa bbb
    shellaaa bbb
    lua
    
    2.10多点编辑:e命令

    -e选项允许在同一行里执行多条命令(感觉和组合表达式效果差不读):

    [root@vm3 test]# sed -e 's/java/JAVA/g' -e 's/shell/SHELL/g' test2.txt 
    JAVA
    scala
    js
    python
    ruby
    SHELL
    lua
    
    2.11冲文件中读入:r命令

    sed '/test/r file' filename
    file中的内容被读进来,显示在与test匹配的行的后面,如果匹配多行,则将file的内容显示在所有匹配行的下面:

    [root@vm3 test]# ls
    test1.txt  test2.txt  test3.txt
    [root@vm3 test]# cat test3.txt 
    ****
    ****3
    ****4
    ****45
    [root@vm3 test]# sed '/java/r test3.txt' test2.txt 
    java
    ****
    ****3
    ****4
    ****45
    scala
    js
    python
    ruby
    shell
    lua
    
    2.12写入文件:w命令

    sed -n '/test/w file' example
    将匹配到的行写入到file中

    [root@vm3 test]# sed -n '/java/w test4.txt' test2.txt 
    [root@vm3 test]# cat test4.txt 
    java
    

    未完待续...

    参考自:sed命令

    相关文章

      网友评论

          本文标题:Linux命令之sed

          本文链接:https://www.haomeiwen.com/subject/jxznlftx.html