如何使用 bash linux 搜索 xml 标签

发布于 2025-01-11 08:03:32 字数 525 浏览 0 评论 0原文

我没有 xml carlet 只是 bash,我必须只在 bash 中实现。 我有 xml 格式的标签 hh,它是来自肥皂项目的响应。我必须验证/检查响应是否具有以下 xml 标记。如果是,则“不执行任何操作”,否则“通过触发电子邮件通知收件人。

    tag=<name>h</name> <name>h</name>
    
 if [[$tag == "<name>h</name> <name>h</name>"]]; then "nothing" else "something" fi ->didnt work
 if [["$tag" == "<name>h</name>\n<name>h</name>"]]; then "nothing" else "something" fi -->didnt work either.

使用 grep 、awk 无法实现它。标记不是文件它只是字符串 请帮忙

I dont have xml scarlet just bash and i have to acheive in bash only.
i have the tag h h in xml format that is the response from a soap project. i have to validate/check if the response have the below xml tag.if yes then do "nothing" else "notify the recipients by triggering an email.

    tag=<name>h</name> <name>h</name>
    
 if [[$tag == "<name>h</name> <name>h</name>"]]; then "nothing" else "something" fi ->didnt work
 if [["$tag" == "<name>h</name>\n<name>h</name>"]]; then "nothing" else "something" fi -->didnt work either.

used grep ,awk what wasn't able to achieve it. tag is not a file its just the string
please help

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

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

发布评论

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

评论(1

哽咽笑 2025-01-18 08:03:32
#!/bin/bash
tag='<name>h</name> <name>h</name>'
echo $tag
if [ "$tag" == '<name>h</name> <name>h</name>' ];
then
        echo nothing
else
        echo something
fi
#!/bin/bash
tag='<name>h</name> <name>h</name>'
echo $tag
if [ "$tag" == '<name>h</name> <name>h</name>' ];
then
        echo nothing
else
        echo something
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文