`

linux sed 命令

阅读更多
sed :stream editor
查找和编辑文本

参数
-n 只列出经过sed 特殊处理的行
-i 在源文件上操作
-e 允许多重编辑


常用命令:
a
新增行,当前参照行后
  sed '2a hello' 第二行后新加一行 hello

i
新增行,当前参照行前

c
行替换, c的后面接字串,替换多行被替换的内容用 \n表示换行
sed  '3c 分割' 第三行变为分割
sed  '1,3c begin' 1-3行替换为begin

d
删除  
    :sed '1,2d' file 删除前两行

p
显示某行,查找使用,一般结合 -n使用
  sed -n '1,5p' 显示1-5行, '$'表示最后一行
  sed -n '/aaa/p' 查找含有aaa的行

s
单词替换,可正则匹配(同样可指定范围,行数)
命令结构 's/src/des/g'
src:原字符
des:目标字符,替换后的
  sed 's/one/first/g' 将所有的one替换为first



----------------------------例子-------------
测试文本:test.txt
my heart will go on
歌手:celion dion
every night in my dreams 每一个夜晚,在我的梦里
i see you, i feel you 我看见你,我感觉到你
that is how i know you go on 我懂得你的心
far across the distance 跨越我们心灵的空间
and the spaces between us 你向我显现你的来临
you have come to show you go on 无论你如何远离我
near far whenever you are 我相信我心已相随
i believe that the heart does go on 你再次敲开我的心扉
once more you open the door 你融入我的心灵
and you're here in my heart 我心与你同往
and my heart will go on and on 与你相随
love can touch us one time 爱每时每刻在触摸我们
and last for a lifetime 为着生命最后的时刻


第一行后添加一行
#sed '1a 我心永恒' test.txt 
my heart will go on
我心永恒
歌手:celion dion 
every night in my dreams 每一个夜晚,在我的梦里 
i see you, i feel you 我看见你,我感觉到你 
that is how i know you go on 我懂得你的心 


第一行替换为 我心永恒
# sed '1c 我心永恒' test.txt 
我心永恒 
歌手:celion dion 
every night in my dreams 每一个夜晚,在我的梦里 
i see you, i feel you 我看见你,我感觉到你 
that is how i know you go on 我懂得你的心 
far across the distance 跨越我们心灵的空间 
and the spaces between us 你向我显现你的来临 
you have come to show you go on 无论你如何远离我 
near far whenever you are 我相信我心已相随 
i believe that the heart does go on 你再次敲开我的心扉 
once more you open the door 你融入我的心灵 
and you're here in my heart 我心与你同往 
and my heart will go on and on 与你相随 
love can touch us one time 爱每时每刻在触摸我们 
and last for a lifetime 为着生命最后的时刻 


删除1-6行
# nl test.txt |sed '1,6d'
     7  and the spaces between us 你向我显现你的来临 
     8  you have come to show you go on 无论你如何远离我 
     9  near far whenever you are 我相信我心已相随 
    10  i believe that the heart does go on 你再次敲开我的心扉 
    11  once more you open the door 你融入我的心灵 
    12  and you're here in my heart 我心与你同往 
    13  and my heart will go on and on 与你相随 
    14  love can touch us one time 爱每时每刻在触摸我们 
    15  and last for a lifetime 为着生命最后的时刻 


获取前两行
# sed -n '1,2p' test.txt 
my heart will go on
歌手:celion dion 


查找含有you的行
# nl test.txt |sed -n  '/you/p'
     4  i see you, i feel you 我看见你,我感觉到你 
     5  that is how i know you go on 我懂得你的心 
     8  you have come to show you go on 无论你如何远离我 
     9  near far whenever you are 我相信我心已相随 
    11  once more you open the door 你融入我的心灵 
    12  and you're here in my heart 我心与你同往 


将文档中的you替换为YOU
# nl test.txt |sed 's/you/YOU/g'
     1  my heart will go on
     2  歌手:celion dion 
     3  every night in my dreams 每一个夜晚,在我的梦里 
     4  i see YOU, i feel YOU 我看见你,我感觉到你 
     5  that is how i know YOU go on 我懂得你的心 
     6  far across the distance 跨越我们心灵的空间 
     7  and the spaces between us 你向我显现你的来临 
     8  YOU have come to show YOU go on 无论你如何远离我 
     9  near far whenever YOU are 我相信我心已相随 
    10  i believe that the heart does go on 你再次敲开我的心扉 
    11  once more YOU open the door 你融入我的心灵 
    12  and YOU're here in my heart 我心与你同往 
    13  and my heart will go on and on 与你相随 
    14  love can touch us one time 爱每时每刻在触摸我们 
    15  and last for a lifetime 为着生命最后的时刻 



-i参数,将操作更新到原文件
   
#sed -i '$a end' test.txt 

    直接在修改源文件,查看test.txt最后一行为end

-e参数一次执行多个命令
# sed -e 's/go/Go/g' -e 's/on/On/g' test.txt 
my heart will Go On
歌手:celiOn diOn 
every night in my dreams 每一个夜晚,在我的梦里 
i see you, i feel you 我看见你,我感觉到你 
that is how i know you Go On 我懂得你的心 
far across the distance 跨越我们心灵的空间 
and the spaces between us 你向我显现你的来临 
you have come to show you Go On 无论你如何远离我 
near far whenever you are 我相信我心已相随 
i believe that the heart does Go On 你再次敲开我的心扉 
Once more you open the door 你融入我的心灵 
and you're here in my heart 我心与你同往 
and my heart will Go On and On 与你相随 
love can touch us One time 爱每时每刻在触摸我们 
and last for a lifetime 为着生命最后的时刻 


原来的go替换为Go ,on替换为On
0
0
分享到:
评论

相关推荐

    linux sed命令详解

    linux sed命令详解

    linux sed 命令详解

    linux sed 命令详解 资源收集 linux sed 命令详解 资源收集

    linux sed命令详解.docx

    linux sed命令详解.docx

    linuxsed命令全参数及用法详解.docx

    linuxsed命令全参数及用法详解.docx

    Unix/Linux sed命令手册

    Unix,Linux中sed命令的详解。

    linux sed命令详解(推荐)

    sed命令是一个面向字符流的非交互式编辑器,也就是说sed不允许用户与它进行交互操作。sed是按行来处理文本内容的。在shell中,使用sed来批量修改文本内容是非常方便的。 sed命令的选项 sed [选项] [动作] 选项与参数...

    实战基本的Linux sed命令示例代码

    它使您能够使用Linux sed命令在操作系统中执行文本文件操作。 与大多数Linux应用程序一样,sed可以处理管道输入,这使它成为一种有效的脚本工具。您可以将其用作基本的查找和替换工具,如下面的示例命令所示,该命令...

    Linux sed 命令用法详解

    Linux sed 命令 Linux sed 命令是利用脚本来处理文本文件。 sed 可依照脚本的指令来处理、编辑文本文件。 Sed 主要用来自动编辑一个或多个文件、简化对文件的反复操作、编写转换程序等。 语法 sed [-hnV][-e][-f]...

    Linux sed命令的使用

    主要介绍了Linux sed命令的使用,帮助大家更好的理解和学习Linux的使用,感兴趣的朋友可以了解下

    sed命令使用

    Linux sed命令 Linux 命令大全 Linux 命令大全 Linux sed命令是利用script来处理文本文件。 sed可依照script的指令,来处理、编辑文本文件。 Sed主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换...

    Linux下sed命令的用法

    文章主要介绍Linux下sed命令的用法,感兴趣的朋友可以看看。

    sed命令大全

    Linux sed命令 相关请见资料内 sed awk都有 Linux sed命令 相关请见资料内 sed awk都有

    LINUX_sed命令详解

    Sed命令是linux下的一个非常有用的命令,特别是在shell脚本中经常会使用到他。 熟悉他你会觉得非常有趣哦! 1.sed -n '2'p filename 打印文件的第二行。 2.sed -n '1,3'p filename 打印文件的1到3行 3. sed -n '/...

    linux 系统 sed 命令使用方法

    linux 系统 sed 命令使用方法linux 系统 sed 命令使用方法linux 系统 linux 系统 sed 命令使用方法linux 系统 sed 命令使用方法sed 命令使用方法

    linux命令中Sed各种使用方式

    linux命令中Sed各种使用方式

    Linux/Unix sed命令中文详解图

    处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并...

    快速理解linux流编辑器sed命令

    本文章是关于理解linux流编辑器sed命令。

    linux script 好用的sed命令

    sed 命令的詳細解說與範例 看了後 馬上就會把sed用得很好

Global site tag (gtag.js) - Google Analytics