sed编辑器基础操作

  1. 替换命令(substitute)
    $ cat data4
    This is a test of the test script
    This is the second test of the test script

替换命令默认情况下,只替换每行中出现的第一处。要替换不同地方出现的文本必须使用【替换标记】,替换标记会在替换命令字符串之后设置
$ sed 's/test/trial/' data4
This is a trial of the test script
This is the second trial of the test script

替换标记(flags)
格式:s/pattern/replacement/flags
有四种可用的替换标记:
数字:表明新文件将替换第几处模式匹配的地方
g :表明新文件将会替换所有匹配的文本
p : 表明原先行的内容要打印出来
w file :将替换的结果写入到文件中

替换每行中的第2处匹配的文本
$ sed 's/test/trial/2' data4
This is a test of the trial script
This is the second test of the trial script

替换整个文件中的匹配文本
$ sed 's/test/trial/g' data4
This is a trial of the trial script
This is the second trial of the trial script

-n选项会禁止sed编辑器输出,p替换标记会输出修改后的行。二者结合使用就是:只输出被替换命令修改后的行
$ sed -n 's/second/last/p' data4
This is the last test of the test script

  1. 使用地址
    $ cat data1
    The quick brown fox jumps over the lazy dog
    The quick brown fox jumps over the lazy dog
    The quick brown fox jumps over the lazy dog
    The quick brown fox jumps over the lazy dog

默认情况下,替换命令作用于文本的所有行,若要作用于特定行或某些行,则使用【行寻址】,两种形式的行寻址:
以数字形式表示行区间;
用文本模式过滤器。
1)指定单个行号
$ sed '2s/dog/cat/' data1
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog

2)用起始行号,逗号,结尾行号指定一定范围区间的行
$ sed '2,3s/dog/cat/' data1
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy dog

3)从某行开始的所有行,使用特殊地址$符号

sed '2,$s/dog/cat/' data1
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat

4)使用文本模式过滤器
格式:/pattern/command (必须用正斜线将指定的pattern封起来)
$ sed '/fox/s/dog/cat/' data1
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat
The quick brown fox jumps over the lazy cat

5)命令组合
格式: address{
command1
command2
...
}
$ sed '2{
s/fox/elphent/
s/dog/cat/
}' data1
The quick brown fox jumps over the lazy dog
The quick brown elphent jumps over the lazy cat
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog

sed '3,$ {
s/brown/green/
s/lazy/cative/
}' data1
The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
The quick green fox jumps over the cative dog
The quick green fox jumps over the cative dog

  1. 插入(insert)和附加(append)文本
    $ cat data6
    This is line number 1
    This is line number 2
    This is line number 3
    This is line number 4

插入(insert)命令(i)会在指定行前增加一个新行
附加(append)命令(a)会在指定行后增加一个新行

在第3行前增加一行
sed '3i\
$> This is an inserted line' data6
This is line number 1
This is line number 2
This is an inserted line
This is line number 3
This is line number 4

在第3行后增加一行
sed '3a\
$>This is an append line' data6
This is line number 1
This is line number 2
This is line number 3
This is an append line
This is line number 4

在最后一行增加一行
  1. 修改行
    修改(change)命令(c),必须在sed命令中单独指定新行
    $ cat data6
    This is line number 1
    This is line number 2
    This is line number 3
    This is line number 4

替换第二行信息

$ sed '2c\

This is a change line of test' data6
This is line number 1
This is a change line of test
This is line number 3
This is line number 4

使用文本模式过滤器 替换 匹配到 number 3 模式的行

$ sed '/number 3/c
This is a change line of test' data6
This is line number 1
This is line number 2
This is a change line of test
This is line number 4

使用行寻址指定行区间第2行~第3行 ,并进行替换

$ sed '2,3c\
This is a change line of test' data6
This is line number 1
This is a change line of test
This is line number 4

  1. 删除行
    删除(delete)命令(d),可以通过特定行区间、特殊的文件结尾符 、模式匹配。可使用两个文本模式来删除某个区间内的行,第一个 模式会“打开”行删除功能,第二个模式会“关闭”行删除功能 cat data6
    This is line number 1
    This is line number 2
    This is line number 3
    This is line number 4

删除第3行

$ sed '3d' data6
This is line number 1
This is line number 2
This is line number 4

删除第2、3行

$ sed '2,3d' data6
This is line number 1
This is line number 4

从第3行删除到最后一行

sed '3,d' data6
This is line number 1
This is line number 2

使用文本模式过滤器,删除 匹配到 number 2模式的行

$ sed '/number 2/d' data6
This is line number 1
This is line number 3
This is line number 4

使用两个文本模式来删除,匹配到number 1模式“开启”删除功能,匹配到number 3模式“关闭”删除功能

$ sed '/number 1/,/number 3/d' data6
This is line number 4

  1. 使用sed处理文件

1)写入文件,使用w命令向文件中写入行
格式:[address] w filename
address 支持单个行号、文本模式、行区间等寻址方式
filename 可以使用相对路径或绝对路径

将data6中的第1,2行写入到testwrite文件中

sed -n '1,2 w testwrite' data6
$ cat testwrite
This is line number 1
This is line number 2

2)从文件中读取数据
读取(read)命令(r)允许将一个独立的文件中的数据插入到数据流中。sed编辑器会将文件中文本插入到指定地址后
格式:[address] r filename
address 支持单个行号、文本模式。

$ cat testread
This is test read from file and add

将文件中的信息添加到data6文件第3行之后

$ sed '3r testread' data6
This is line number 1
This is line number 2
This is line number 3
This is test read from file and add
This is line number 4

  1. 转换命令
    转换(transform)命令(y)可以处理单个字符
    格式:[address]y/inchars/outchars/
    转换命令会对inchars和outchars的值进行一对一的映射,inchars的第一个字符会被转换成outchars中的第一个字符,依此类推,直到处理完指定的字符。
    $ cat data6
    This is line number 1
    This is line number 2
    This is line number 3
    This is line number 4

将1234分别替换为5678

$ sed 'y/1234/5678/' data6
This is line number 5
This is line number 6
This is line number 7
This is line number 8

  1. sed命令,-i 选项直接修改读取的文件内容,而不是输出到终端。直接对文本文件进行操作
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容