使用 shell 命令查找并替换一组 xml 文件中的字符串
我的目录中有 1000 个文件。我在一台Solaris机器上,
我想替换目录中所有xml文件中的字符串“/example/test/temp”t0“/testing/in/progress/。
任何指针都会很棒。
谢谢,
新手
I have 1000 files in a directory. I'm on a solaris machine
I want to replace the string " /example/test/temp " t0 " /testing/in/progress/ in all the xml files in my directory.
any pointers will be great.
thanks,
novice
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样(全部在一行):
How about (all on one line):
使用 sed(1)。
一般来说,使用 xslt 处理器来处理 XML 文件更安全,但在这个特定的示例中,某些“时髦”XML 表示导致问题的可能性相当小......
Use sed(1).
In general it is safer to use an xslt processor to massage XML files, but in this particular example, the chances of some "funky" XML representation causing problems is pretty remote ...