我有以下文本(以及更多)的文件。
import (
"http"
"web"
)
我想"web"
用"pkg/web"
(在所有文件中)替换所有内容。所以结果需要
import (
"http"
"pkg/web"
)
我试着sed
喜欢
find . -type f -print0 | xargs -0 sed -i '/"web"/c\"pkg/web"'
这给出了错误。
sed: 1: "test" invalid command code .
什么是正确的方法?
谢谢。