sed删除文件中的一行内容的脚本代码
更新时间:2013年03月02日 19:23:05 作者:
sed删除文件中的一行内容的脚本代码,需要的朋友可以参考下
先来看下原始文件的内容:
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
复制代码 代码如下:
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
相关文章
script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本
这篇文章主要介绍了script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本,需要的朋友可以参考下2016-04-04


最新评论