当前位置: 技术问答>linux和unix
vi 查找替换字符串之前要求确认,如何确认? %s/regexp/replacement/g
来源: 互联网 发布时间:2016-03-30
本文导语: 各位,solaris10的vi下,我想全文搜索指定的字符串,并替换成相应的字符串。 在vi命令模式下 :%s/查找的字符串/替换成的字符串/gc 据说c代表confirm, 可是我这么输入后,显示 :%s/printf/sprintf/gc printf("hello world!n"); ...
各位,solaris10的vi下,我想全文搜索指定的字符串,并替换成相应的字符串。
在vi命令模式下
:%s/查找的字符串/替换成的字符串/gc
据说c代表confirm,
可是我这么输入后,显示
:%s/printf/sprintf/gc
printf("hello world!n");
^^^^^^
只是我要输入什么字符表示我接受修改,什么字符表示拒绝修改?
在vi命令模式下
:%s/查找的字符串/替换成的字符串/gc
据说c代表confirm,
可是我这么输入后,显示
:%s/printf/sprintf/gc
printf("hello world!n");
^^^^^^
只是我要输入什么字符表示我接受修改,什么字符表示拒绝修改?
|
You can type y to substitute this match, n to skip this match, a to substitute this and all the remaining matches ("Yes to all"), and q to quit substitution.