linux sed命令总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux sed命令总结相关的知识,希望对你有一定的参考价值。

linux sed命令总结

简介

sed 是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有 改变,除非你使用重定向存储输出。Sed主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换程序等。

[[email protected] ~]# sed [-nefr] [动作]
选项与参数:
-n :使用安静(silent)模式。在一般 sed 的用法中,所有来自 STDIN 的数据一般都会被列出到终端上。但如果加上 -n 参数后,则只有经过sed 特殊处理的那一行(或者动作)才会被列出来。
-e :直接在命令列模式上进行 sed 的动作编辑;
-f :直接将 sed 的动作写在一个文件内, -f filename 则可以运行 filename 内的 sed 动作;
-r :sed 的动作支持的是延伸型正规表示法的语法。(默认是基础正规表示法语法)
-i :直接修改读取的文件内容,而不是输出到终端。

动作说明: [n1[,n2]]functionn1, n2 :不见得会存在,一般代表『选择进行动作的行数』,举例来说,如果我的动作是需要在 10 到 20 行之间进行的,则『 10,20[动作行为] 』function:
a :新增, a 的后面可以接字串,而这些字串会在新的一行出现(目前的下一行);
c :取代, c 的后面可以接字串,这些字串可以取代 n1,n2 之间的行;
d :删除,因为是删除啊,所以 d 后面通常不接任何咚咚;
i :插入, i 的后面可以接字串,而这些字串会在新的一行出现(目前的上一行);
p :列印,亦即将某个选择的数据印出。通常 p 会与参数 sed -n 一起使用;
s :取代,可以直接进行取代的工作哩!通常这个 s 的动作可以搭配正规表示法!例如 1,20s/old/new/g;

举例:(假设我们有一文件名为test.txt)
     删除某行
     [[email protected] ruby# sed ‘1d‘ test.txt              #删除第一行 
     [[email protected] ruby] # sed ‘$d‘ test.txt              #删除最后一行
     [[email protected] ruby] # sed ‘1,2d‘ test.txt          #删除第一行到第二行
     [[email protected] ruby] # sed ‘2,$d‘ test.txt           #删除第二行到最后一行

  显示某行
.    [[email protected] ruby# sed -n ‘1p‘ test.txt          #显示第一行 
     [[email protected] ruby] # sed -n ‘$p‘ test.txt          #显示最后一行
     [[email protected] ruby] # sed -n ‘1,2p‘ test.txt       #显示第一行到第二行
     [[email protected] ruby] # sed -n ‘2,$p‘ test.txt       #显示第二行到最后一行

  使用模式进行查询
     [[email protected] ruby] # sed -n ‘/ruby/p‘ test.txt    #查询包括关键字ruby所在所有行
     [[email protected] ruby] # sed -n ‘/\$/p‘ test.txt        #查询包括关键字$所在所有行,使用反斜线\屏蔽特殊含义

[[email protected] ~]# cat test.txt 

asfkjlsfj

asfkjls

asfkjlswer

fkjlswer

fkjlswerhfh

fkjlerhfh

[[email protected] ~]# sed ‘1a ljx tea‘ test.txt  #第一行后增加字符串"ljx tea"

asfkjlsfj

ljx tea

asfkjls

asfkjlswer

fkjlswer

fkjlswerhfh

fkjlerhfh

[[email protected] ~]# sed ‘1,3a ljx tea‘ test.txt   #第一行到第三行后增加字符串"ljx tea"

asfkjlsfj

ljx tea

asfkjls

ljx tea

asfkjlswer

ljx tea

fkjlswer

fkjlswerhfh

fkjlerhfh

[[email protected] ~]# sed ‘1a ljx tea\nor lll‘ test.txt   #第一行后增加多行,使用换行符\n

asfkjlsfj

ljx tea

or lll

asfkjls

asfkjlswer

fkjlswer

fkjlswerhfh

fkjlerhfh

代替一行或多行

[[email protected] ~]# sed ‘1c Hi‘ test.txt   #第一行代替为Hi

Hi

asfkjls

asfkjlswer

fkjlswer

fkjlswerhfh

fkjlerhfh

[[email protected] ~]# sed ‘1,3c Hi‘ test.txt  #第一行到第三行代替为Hi

Hi

fkjlswer

fkjlswerhfh

fkjlerhfh

替换一行中的某部分
格式:sed ‘s/要替换的字符串/新的字符串/g‘   (要替换的字符串可以用正则表达式)

[[email protected] ~]# sed -n ‘/fk/p‘ test.txt |sed ‘s/fk/iii/g‘      #替换fk为iii

asiiijlsfj

asiiijls

asiiijlswer

iiijlswer

iiijlswerhfh

iiijlerhfh

[[email protected] ~]# sed -n ‘/fk/p‘ test.txt |sed ‘s/fk//g‘    #删除fk

asjlsfj

asjls

asjlswer

jlswer

jlswerhfh

jlerhfh

插入
[[email protected] ruby] # sed -i ‘$a bye‘ test.txt         #在文件ab中最后一行直接输入"bye"
[[email protected] ruby]# cat test.txt
Hello!
ruby is me,welcome to my blog.
end
bye

删除匹配行

sed -i ‘/匹配字符串/d‘  filename  (注:若匹配字符串是变量,则需要“”,而不是‘’。记得好像是)

替换匹配行中的某个字符串

sed -i ‘/匹配字符串/s/替换源字符串/替换目标字符串/g‘ filename

本文出自 “每天一小步” 博客,请务必保留此出处http://fenyuer.blog.51cto.com/11265169/1913129

以上是关于linux sed命令总结的主要内容,如果未能解决你的问题,请参考以下文章

Linux下常用命令之sed学习总结

linux命令总结:sed

Linux echo, sort, sed 等一些命令总结

linux 常用terminal命令总结

linux 常用terminal命令总结

三剑客命令之Sed的用法总结