Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 linux 中使用 vi 时,如何使用“ring12”查找和替换像“aa:bb:cc:dd”这样的字符串?对于没有分隔符的普通字符串,我知道它为
%s/randomstring/ring12/g
但是如何处理具有':'符号的字符串?我知道我应该使用反斜杠 '\' 但不知道语法。
实际上它不需要 \ ...你可以简单地使用这样的东西:
<ESC> : %s ,aa:bb:cc:dd,ring12,g
<ESC>将 vi 置于命令模式的转义键在哪里。
<ESC>