You can du this with xmlstarlet ed -u
. Specify an XPath expression and then set the new value with -v
:
xmlstarlet ed -u '/ThreadGroup/stringProp[@name="ThreadGroup.num_threads"]'
-v 99999 file.xml
(Depending on the rest of your XML file, you may have to modify the XPath expression to be more specific and account for more nesting)
Here's a complete example:
$ cat file.xml
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Blogs" enabled="true">
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" enabled="true">
<boolProp name="LoopController.continue_forever">false</boolProp>
<stringProp name="LoopController.loops">778</stringProp>
</elementProp>
<stringProp name="ThreadGroup.num_threads">99999</stringProp>
<stringProp name="ThreadGroup.ramp_time">66</stringProp>
<longProp name="ThreadGroup.start_time">44</longProp>
<longProp name="ThreadGroup.end_time">55</longProp>
<boolProp name="ThreadGroup.scheduler">false</boolProp>
<stringProp name="ThreadGroup.duration">77</stringProp>
<stringProp name="ThreadGroup.delay">0</stringProp>
</ThreadGroup>
$ xmlstarlet ed -u '/ThreadGroup/stringProp[@name="ThreadGroup.num_threads"]'
-v 99999 file.xml
<?xml version="1.0"?>
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Blogs" enabled="true">
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" enabled="true">
<boolProp name="LoopController.continue_forever">false</boolProp>
<stringProp name="LoopController.loops">778</stringProp>
</elementProp>
<stringProp name="ThreadGroup.num_threads">99999</stringProp>
<stringProp name="ThreadGroup.ramp_time">66</stringProp>
<longProp name="ThreadGroup.start_time">44</longProp>
<longProp name="ThreadGroup.end_time">55</longProp>
<boolProp name="ThreadGroup.scheduler">false</boolProp>
<stringProp name="ThreadGroup.duration">77</stringProp>
<stringProp name="ThreadGroup.delay">0</stringProp>
</ThreadGroup>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…