如何在 BASH 中使用 xmlstarlet 计算 XML 文档中的元素数量?

use*_*528 4 bash xmlstarlet

我需要计算一个元素在 XML 文档中出现的次数。我需要计算的元素称为“ThreadGroup”

Elelement 计数:

<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
Run Code Online (Sandbox Code Playgroud)

以下 XML 中有三个 ThreadGroup 元素。我们如何使用 xmlstarlet 计算它们?

测试 XML

<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="2.8" jmeter="2.13 r1665067">
<hashTree>
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true">
  <stringProp name="TestPlan.comments"></stringProp>
  <boolProp name="TestPlan.functional_mode">false</boolProp>
  <boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
  <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
    <collectionProp name="Arguments.arguments"/>
  </elementProp>
  <stringProp name="TestPlan.user_define_classpath"></stringProp>
</TestPlan>
<hashTree>
  <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
    <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
  </ThreadGroup>
  <hashTree/>
  <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
    <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
  </ThreadGroup>
  <hashTree/>
  <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
    <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>

  </ThreadGroup>
  <hashTree/>
</hashTree>
Run Code Online (Sandbox Code Playgroud)

Bir*_*rei 7

尝试使用count()功能,例如:

xmlstarlet sel -t -c "count(//ThreadGroup)" xmlfile
Run Code Online (Sandbox Code Playgroud)

在一个格式良好的xml文件(不是你的情况)中,它会产生:

3
Run Code Online (Sandbox Code Playgroud)