码迷,mamicode.com
首页 > 系统相关 > 详细

linux sed

时间:2014-10-14 13:19:58      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:http   os   ar   文件   sp   art   代码   linux   ef   

原始文件的内容:
代码如下:
[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

http://www.jb51.net/article/34425.htm

 

linux sed

标签:http   os   ar   文件   sp   art   代码   linux   ef   

原文地址:http://www.cnblogs.com/softidea/p/4023976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!