考虑here和here中的代码,我已将其更改为解释我的问题。现在代码看起来像这样:
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book category="COOKING">
<Description>
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<stock>YES</stock>
</Description>
<Location>
<restock>UMG</restock>
<shelf>30</shelf>
</Location>
</book>
<book category="CHILDREN">
<Description>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<stock>NO</stock>
</Description>
<Location>
<restock>GIP</restock>
<shelf>20</shelf>
</Location>
</book>
<book category="CHILDREN">
<Description>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2015</year>
<stock>YES</stock>
</Description>
<Location>
<restock>GIP</restock>
<shelf>21</shelf>
</Location>
</book>
<book category="WEB">
<Description>
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<year>2003</year>
<stock>YES</stock>
</Description>
<Location>
<restock>NGT</restock>
<shelf>11</shelf>
</Location>
</book>
在我的个人问题中,我想首先检查一本书是否有货,如果有,请检查货架所在的位置。如果非常直接,可以获得股票价值:
xmlstarlet sel -t -c "/bookstore/book/Description[stock='YES']" book.xml
但我无法做有条件的。在xmlstarlet指南中,它说我应该使用-i或--if,但我一直在尝试按如下方式执行:
xmlstarlet sel -t -c -i "/bookstore/book/Description[stock='YES']" -v "/bookstore/book/Location/shelf" book.xml
因为我看到了类似的问题,但它现在正在运作。有什么想法吗?
编辑:
使用以下方法,我没有错误,但任何事情都没有
cat book.xml | xmlstarlet sel -t -m "/bookstore/book/Description" -i "@stock='YES'" -v '/bookstore/book/Location/shelf'
编辑2:
我一直在想如果我有两本相同的书会发生什么。我已经编辑了上面的代码,现在我有2本名为Harry Potter的书,每本书都有不同的出版日期和书架
在Daniel Haley接近之后,我想知道所有这本书的主题是哈利波特:
xmlstarlet sel -t -v "/*/book[Description/title='Harry Potter']/Location/shelf"
但我只得到第一个结果,但我想要所有结果。
答案 0 :(得分:0)
不需要使用条件:
有了这个,我得到了有库存书籍的作者
xmlstarlet sel -t -m "/bookstore/book/Description[stock='YES']" -v author -n book.xml
这将提供所有货架。越来越近,但不完全是我们想要的
xmlstarlet sel -t -m "/bookstore/book/Description[stock='YES']" -v "/bookstore/book/Location/shelf" -n book.xml
最后,这本书将为您提供库存书籍的书架
xmlstarlet sel -t -m "/bookstore/book[Description[stock='YES']]" -v "Location/shelf" -n book.xml
答案 1 :(得分:0)
除了不需要条件(-i
)之外,它也不一定需要匹配(-m
);只需获取值(-v
)...
xmlstarlet sel -t -v "/*/book[Description/stock='YES']/Location/shelf" -n book.xml