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.
我有一些我经常放入 Xcode 的文件,这些文件是在另一个程序中制作的,我需要在其中替换一个字符串。我只是希望它作为脚本成为构建阶段的一部分。我尝试将 find 与 sed 一起使用
find . -type f -exec sed -i 's/onclick="js(setPanoName(/onloaded="js(setPanoName(/g' {} \;
没有效果。我知道它真的很近。怎么了?
我将命令更改为
sed -i '' 's/onclick="js(setPanoName(/onloaded="js(setPanoName(/g' *.xml;
它现在有效。