欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

sed删除文件中的一行内容的脚本代码

程序员文章站 2023-11-22 23:03:46
先来看下原始文件的内容:复制代码 代码如下:root@localhost ~]# cat file.txthello worlda:b:c -h -na:b:c -h -n...
先来看下原始文件的内容:
复制代码 代码如下:

root@localhost ~]# cat file.txt
hello world
a:b:c -h -n
a:b:c -h -n

sed根据条件删除相关的行:
复制代码 代码如下:

[root@localhost ~]# sed -i '/a:b:c -h -n/d' file.txt
[root@localhost ~]# cat file.txt
hello world

sed根据条件进行相关内容的替换:
复制代码 代码如下:

[root@localhost ~]# sed -i 's/hello/baidu/' file.sh
[root@localhost ~]# cat file.sh
baidu world