逃脱< 和> 在 sed/shell 中

发布于 2024-07-06 13:59:08 字数 175 浏览 10 评论 0 原文

我如何逃脱“<” 和“>” sed 中的字符。

我有一些 xml 文件,需要替换标签之间的一些文本。 如何逃避“>” 和“<” 人物。

> 的问题 且< 将输出重定向到文件在 shell 中是否具有特殊含义? 所以反斜杠不起作用。

How do I escape '<' and '>' character in sed.

I have some xml files which needs some text between the tags to be replaced. How do I escape the '>' and '<' characters.

The problem with > and < is it has special meaning in the shell to redirect the output to a file. So backslash doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不念旧人 2024-07-13 13:59:08

好的。 我自己发现的。 使用引号。

$ sed -i "s/>foo</>bar</g" file

Ok. Found out by myself. Use quotes.

$ sed -i "s/>foo</>bar</g" file
[浮城] 2024-07-13 13:59:08

只需在它们前面加上反斜杠或将它们用单引号或双引号引起来即可。 再想一想,我认为你的问题需要更清楚。 您是否正在尝试使用 sed 处理 XML 文件并且想要获取标签之间的内容? 那么你想要:

sed -re 's@(<TAG.*?>).*?(</TAG>)@\1hi\2@' test.xml

Just put a backslash before them or enclose them in single or double quotes. On second thought, your question I think needs to be more clear. Are you trying to use sed to process an XML file and you want to get what's between a tag? Then you want:

sed -re 's@(<TAG.*?>).*?(</TAG>)@\1hi\2@' test.xml
梦屿孤独相伴 2024-07-13 13:59:08

用反斜杠转义它们

Escape them with backslash

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文