我需要从 bash 脚本中的 xml 文件中获取属性,但我既不能使用 xmllint --xpath 也不能使用 xmlstarlet,因为它们在我工作的服务器上不可用。
我已经尝试过使用 grep、cut 和 sed 的解决方案,但长期以来这并不是一个好的解决方案。
机器上有 grep_xml 可用,我可以使用它访问元素,但是当我尝试访问我的属性时,我得到“处理程序中的错误无法识别的表达式”
这是我的 xml 文件
<?xml version="1.0" standalone="yes"?>
<p4codeline xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="p4codeline_1_1.xsd">
<module name="kpreader" currentVersion="kpreader_1.1STD0" previousVersion="kpreader_1.0STD0">
<codeline owner="undefined" path="//HEP/jcas/kpreader/trunk/...">
<namingConvention/>
<description>Main codeline for development</description>
<rules>
<rule>Develop on MAIN, and create a TAG codeline on release</rule>
<rule>Never broke the build on the MAIN</rule>
</rules>
</codeline>
<externals>
<external viewPath="J2ep_BuildTools/..." codeLine="//CT/JAVA/J2ep_BuildTools/Source/tags/J2EP_BUILDTOOLS_1.6STD0/..." depotPath="."/>
</externals>
</module>
</p4codeline>
我只需要使用基于 bash 或命令的解决方案来访问代码行中的路径属性。
我试过类似的东西
xml_grep -t '/p4codeline/module/codeline/@path' file.xml
它回答我
error: unrecognized expression in handler: '/p4codeline/module/codeline@path' at /usr/bin/xml_grep line 183