免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3218 | 回复: 0
打印 上一主题 下一主题

[新手入门] VI编辑器中查找/替换命令的使用! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-12 09:46 |只看该作者 |倒序浏览

From the Dr. Strangelove, or How I Learned to Love the vi Editor file: Although difficult to learn, the vi editor is well worth the effort because the skill is portable between all Unix implementations. But more importantly, vi has powerful editing capabilities that can significantly enhance your productivity. This is the first in a series of tips that will illustrate some these capabilities.
There are several formats for searching/replacing test in vi. One relatively simple format is:
"range"s/old_string/new_string/
Where "range" indicates which lines to restrict the search/replace. The "range" can be absolute or relative line numbers, as well as search criteria. A few examples will illustrate the use of this format.
vi Command
Description
%s/red/blue/
Replace first occurrence (in each line) of red with blue on all lines. The % is shorthand for all lines. Other shorthand notations include . (period) for the current line and $ for the last line in the file.
%s/red/blue/g
Replace all occurrences of red with blue on all lines The g indicates all occurrences on a line. The g can be replaced with a number [1,2,...] to change only the n'th occurrence on each line.
45,54s/red/blue/
Replace first occurrence of red with blue on lines 45 through 54.
.,+5s/red/blue/
Replace first occurrence of red with blue starting at the current line for the next 5 lines.
/abc/,/xyz/s/red/blue/
Replace first occurrence of red with blue starting at at the next line containing abc through the first line containing xyz You could also use /xyz/-4 to indicate the line before xyz.
The "range" concept applies to almost all vi commands. For example, 20,40dd will delete lines 20 through 40, .,$dd will delete the current line through the end of the file, and /abc/,/xyz/dd will delete the next line containing "abc" through the line containing "xyz."
Comment: The search/replace commands should be prefaced with the "[ESC]:" keystroke combination. It has been left out here for clarity.


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/6482/showart_111580.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP