在vi中,搜索和替换,如何转义一个’/'(正斜杠),使它是正确的。在路径中说。
像:/ Users / tom / documents / pdfs /
:%s//Users/tom/documents/pdfs//<new text>/g --FAILS (obvIoUsly) :%s/\/Users/tom/documents/pdfs\//<new text>/g -- FAILS with a trailing error :%s/'/Users/tom/documents/pdfs/'/<new text>/g -- FAILS with a trailing error
我缺少什么?
你还需要在内部避开前斜线。
原文链接:https://www.f2er.com/bash/391169.html:%s/\/Users\/tom\/documents\/pdfs\//<new text>/g