shell笔记之sed编辑器的使用
2012-05-25 07:58:50 来源:WEB开发网核心提示: 下面用个简单的例子做一下文本字符替换练习:$ echo "this is study script" | sed 's/script/bashshell/'this is study bashshell利用管道,将数据流传送给sed进行替换,shell笔记之sed编辑器的使用(2
下面用个简单的例子做一下文本字符替换练习:
$ echo "this is study script" | sed 's/script/bashshell/'
this is study bashshell
利用管道,将数据流传送给sed进行替换,本例中sed使用了s命令,用第二个字符串bashshell替换了script。当然,这个例子只是编辑了一行数据,如果多行数据,处理的速度是否能够使用相同时间呢?接着看下面这个例子
$ cat test.txt
this is test script
this is test script
this is test script
this is test script
this is test script
更多精彩
赞助商链接