Linux sed命令 以行为单位编辑文本,或替换文本中的文字

Posted 梓沂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux sed命令 以行为单位编辑文本,或替换文本中的文字相关的知识,希望对你有一定的参考价值。

sed -e 4a
ewLine testfile 

首先查看testfile中的内容如下:

$ cat testfile #查看testfile 中的内容  
HELLO LINUX!  
Linux is a free unix-type opterating system.  
This is a linux testfile!  
Linux test 

使用sed命令后,输出结果如下:

$ sed -e 4a
ewline testfile #使用sed 在第四行后添加新字符串  
HELLO LINUX! #testfile文件原有的内容  
Linux is a free unix-type opterating system.  
This is a linux testfile!  
Linux test  
newline   

以上是关于Linux sed命令 以行为单位编辑文本,或替换文本中的文字的主要内容,如果未能解决你的问题,请参考以下文章

文本处理-sed

Linux学习笔记:sed

文本编辑命令——sed

shell 脚本——第七节课 三剑客之sed语句

linux三剑客-sed

打开高效文本编辑之门_熟悉Linux Sed的替换命令