什么是Linux中的sed命令

《Linux就该这么学》给同学们介绍一个高效命令:sed(stream editor)是一款高效的流编辑器,它一次只处理一行内容,处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后把缓冲区的内容送往屏幕,接着处理下一行,这样不断重复,直到文件末尾。sed处理过的文件内容并没有改变,除非你使用重定向存储输出。

操作方法

  • 01

    sed命令的使用规则 命令格式如下: sed [option] 'command' input_file 其中option是可选的,常用的option有如下几种: -n 使用安静(silent)模式,只列出经过sed特殊处理的那一行(或者动作)内容; -e 直接在指令列模式上进行 sed 的动作编辑; -f 直接将 sed 的动作写在一个文件内, -f filename 则可以执行filename内的sed命令; -r 让sed命令支持扩展的正则表达式(默认是基础正则表达式); -i 直接修改读取的文件内容,而不是由屏幕输出; 常用的命令有以下几种: a \: 即append追加字符串,可将其后的字符加在所选择内容的后面 c \: 取代/替换字符串,可将其后内容替换至所选内容 d  : 即delete删除,该命令会将当前选中的行删除 i \: 即insert插入字符串,可将其后内容插入至所选内容前 p  : print即打印,该命令会打印当前选择的行到屏幕上 s  : 替换,通常s命令的用法是这样的:1,2s/old/new/g,将old字符串替换成new字符串 命令示例 假设有一个本地文件test.txt,文件内容如下: [root@linuxprobe ~]$ cat test.txt this is first line this is second line this is third line this is fourth line this fifth line happy everyday end 本节将使用该文件详细演示每一个命令的用法。

  • 02

    a命令 [root@linuxprobe ~]$ sed '1a \add one' test.txt this is first line add one this is secondline this is third line this is fourth line this is fifth line happy everyday end 本例命令部分中的1表示第一行,同样的第二行写成2,第一行到第三行写成1,3,用$表示最后一行,比如2,$表示第二行到最后一行中间所有的行(包含第二行和最后一行)。本例的作用是在第一行之后增加字符串”add one”,从输出可以看到具体效果。 [root@linuxprobe ~]$ sed '1,$a \add one' test.txt this is first line add one this is second line add one this is third line add one this is fourth line add one this is fifth line add one happy everyday add one end add one 本例表示在第一行和最后一行所有的行后面都加上”add one”字符串,从输出可以看到效果。 [root@linuxprobe ~]$ sed '/first/a \add one' test.txt this is first line add one this is secondline this is third line this is fourth line this is fifth line happy everyday end 本例表示在包含”first”字符串的行的后面加上字符串”add one”,从输出可以看到第一行包含first,所以第一行之后增加了”add one” [root@linuxprobe ~]$ sed '/^ha.*day$/a \add one' test.txt this is first line this is secondline this is third line this is fourth line this is fifth line happy everyday add one end 本例使用正则表达式匹配行,^ha.*day$表示以ha开头,以day结尾的行,则可以匹配到文件的”happy everyday”这样,所以在该行后面增加了”add one”字符串。

  • 03

    i命令 i命令使用方法和a命令一样的,只不过是在匹配的行的前面插入字符串,所以直接将上面a命令的示例的a替换成i即可,在此就不啰嗦了。

  • 04

    c命令 [root@linuxprobe ~]$ sed '$c \add one' test.txt this is first line this is secondline this is third line this is fourth line this is     fifth line happy everyday add one 本例表示将最后一行替换成字符串”add one”,从输出可以看到效果。 [root@linuxprobe ~]$ sed '4,$c \add one' test.txt this is first line this is secondline this is third line add one 本例将第四行到最后一行的内容替换成字符串”add one”。 [root@linuxprobe ~]$ sed '/^ha.*day$/c \replace line' test.txt this is first line this is secondline this is third line this is fourth line this is fifth line replace line end 本例将以ha开头,以day结尾的行替换成”replace line”。

  • 05

    d命令 [root@linuxprobe ~]$ sed '/^ha.*day$/d' test.txt this isfirst line this issecond line this isthird line this isfourth line this isfifth line end 本例删除以ha开头,以day结尾的行。 [root@linuxprobe ~]$ sed '4,$d' test.txt thisis first line thisis second line thisis third line 本例删除第四行到最后一行中的内容。

(0)

相关推荐

  • Linux中使用sed命令替换字符串小结

    最近写了几个小脚本用到了sed命令,学了一下,顺便记下 sed替换的基本语法为: 复制代码 代码如下: sed 's/原字符串/替换字符串/' 单引号里面,s表示替换,三根斜线中间是替换的样式,特殊字 ...

  • 如何在Linux中使用date命令修改日期时间

    Linux中可使用date命令查看修改日期及时间,本例中以CentOS6为例说明. 在Linux中使用date命令修改日期时间 01 直接输入"date"可查看当前系统日期及时间( ...

  • Linux中使用hostname命令修改主机名称(非常简单)

    在Linux中修改主机名其实是一件非常容易的事情,但网上有些帖子在这一块都说得很复杂,诸如修改什么配置文件之类的等等,用hostname这个命令我们就可以很轻易地修改了。 我们直接运行hostname ...

  • Linux中使用file命令识别文件类型默认没有扩展名

    在Linux系统操作过程中,没有扩展名的文件难以识别,我们可以使用命令来识别文件类型,下面小编就给大家介绍下如何使用file命令来识别文件类型。 我们知道Linux文件系统是Linux内核支持的基本功 ...

  • Linux下的sed命令使用详解

    sed是stream editor的简称,也就是流编辑器.它一次处理一行内容,处理时,把当前处理的行存储在临时缓冲区中,称为"模式空间"pattern space,接着用sed命令 ...

  • linux中如何查看命令所在目录

    Linux如何快速定位命令所在的文件目录,可以参考如下方法. 操作方法 01 可以通过type命令来查询命令所在的目录. 02 type命令是用来判断shell命令的类型的,如果是内部命令,没有独立可 ...

  • Linux中使用cp命令报cp:omitting directory错误

    在Linux系统中使用cp命令对文件夹或者目录进行复制操作时,有时候会出现cp:omitting directiory的错误提示.这是怎么回事呢,下面简单来解释一下,并给出解决方法. 问题分析 01 ...

  • Linux中文本处理命令sed的使用示例分享

    sed对文本的处理很强大,并且sed非常小,参数少,容易掌握,他的操作方式根awk有点像.sed按顺序逐行读取文件.然后,它执行为该行指定的所有操作,并在完成请求的修改之后的内容显示出来,也可以存放到 ...

  • Linux中的ls命令详细使用

    英文全名:List即列表的意思,当我们学习某种东西的时候要做到知其所以然,当你知道了这个东西大概是个什么了以后你的思维就会联想到很多的东西学习的就会很快。 1. ls -a 列出文件下所有的文件,包括 ...