标签: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
标签:http os ar 文件 sp art 代码 linux ef
原文地址:http://www.cnblogs.com/softidea/p/4023976.html