Como recupero um valor usando xmlstarlet?
Estou tentando recuperar o valor inicial 4.7 do seguinte arquivo xml:
<?xml version="1.0"?>
<GCContextualMethod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.agilent.com/schemas/Analytical/Instrument/GC7890/2006/">
<method xmlns="">
<GC PostRunHoldTime="0" AutoPrepRun="UNKNOWN">
<Inlet DeterminesReadiness="true">
...
</Inlet>
<Inlet DeterminesReadiness="true" />
<Column DeterminesReadiness="true">
...
</Column>
<Column DeterminesReadiness="true">
<Setpoints Mode="CONSTANT_FLOW">
<Flow State="ON" InitialHoldTime="0" InitialValue="4.7" PostRunValue="4.7" />
</Setpoints>
</Column>
<Column DeterminesReadiness="false">
Eu tentei o seguinte, mas não funcionou:
%cd%\resources\XML.EXE sel -t -c "/GCContextualMethod/method[@xmlns=""]/GC[@PostRunHoldTime="0"]/Column[2]/Setpoints[@Mode="CONSTANT_FLOW"]/Flow[@State="ON"]@InitialValue" %cd%\GC78901.RapidControl.MethodXML.xml
Responder1
No PowerShell são apenas linhas:
[xml]$XmlDocument = Get-Content -Path C:\...\test.xml
$XmlDocument.GCContextualMethod.method.GC.Column.Setpoints.Flow.InitialValue | Out-File c:\temp\result.txt
Salve isso em algum script.ps1 e altere o caminho para o xml real. O resultado 4.7 sairá para o arquivo txt.
Observe que no arquivo xml real todos os elementos como "GCContextualMethod" ou "método" devem ter um de fechamento emparelhado com o de abertura. Isso não está representado no seu exemplo. Então, ao criar a amostra terminei por xml com:
</GC>
</method>
</GCContextualMethod>