WEB开发网
开发学院软件开发Shell shell笔记之sed编辑器的使用 阅读

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

上一页  1 2 3 4  下一页

Tags:shell 笔记 sed

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接