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

shell笔记之sed编辑器的使用

 2012-05-25 07:58:50 来源:WEB开发网   
核心提示:$ sed 's/script/shell/' test.txt this is test shellthis is test shellthis is test shellthis is test shellthis is test shellsed命令执行与返回数据几乎同时进行,它在处理每一行数据的

$ sed 's/script/shell/' test.txt 

this is test shell
this is test shell
this is test shell
this is test shell
this is test shell

sed命令执行与返回数据几乎同时进行,它在处理每一行数据的同时,会显示执行后的结果,在sed编辑器结束处理整个文件之前,就能看到结果。

 注意,sed编辑器并不修改文件中的内容,利用cat test.txt查看文件,结果文件中的内容还是原来的。我们再加上- i参数执行后试试看。

 $ sed -i 's/script/shell/' test.txt

执行完毕后,并不显示执行后的结果,但是文件中的script却已经被替换成shell字符了。这就是- i参数的用意。

上一页  1 2 3 4  下一页

Tags:shell 笔记 sed

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