タグ値を抽出するシェルスクリプト

タグ値を抽出するシェルスクリプト

以下に説明するXMLファイルがあり、unixコマンドを使用してアプリケーション名、コンピュータ、およびステータスタグの値を抽出し、それをカンマ区切り形式で表示したいとします。

XMLファイル:-

 <?xml version="1.0" encoding="UTF-8"?>
<applications>
<application name="Adapter/Code1">
<service name="Code1.par">
<deploymentStatus>Success</deploymentStatus>
<serviceInstance name="Code1-One">
    <machine>123</machine>
    <status>Running</status>
</serviceInstance>
<serviceInstance name="Code1-Two">
    <machine>456</machine>
    <status>Running</status>
</serviceInstance>
</service>
</application>
<application name="Adapter/Code2">
<service name="Code2.par">
<deploymentStatus>Success</deploymentStatus>
<serviceInstance name="Code2-One">
    <machine>123</machine>
    <status>Running</status>
</serviceInstance>
<serviceInstance name="Code2-Two">
    <machine>456</machine>
    <status>Running</status>
</serviceInstance>
</service>
</application>
</applications>

出力:-

Adapter/Code1,123,Running

Adapter/Code1,456,Running

Adapter/Code2,123,Running

Adapter/Code2,456,Running

このアクティビティを実行するためのunixcommand / shellスクリプトを提供できますか?

よろしくお願いします! ! !

答え1

Python3.xソリューション(xml.etree.ElementTree標準寸法):

import xml.etree.ElementTree as ET

tree = ET.parse("test.xml")
root = tree.getroot()
for app in root.findall('application'):
    for m,s in zip(app.iter('machine'), app.iter('status')):
        print("%s,%s,%s" % (app.get('name'), m.text, s.text))

出力:

Adapter/Code1,123,Running
Adapter/Code1,456,Running
Adapter/Code2,123,Running
Adapter/Code2,456,Running

https://docs.python.org/3.6/library/xml.etree.elementtree.html?highlight=etree#module-xml.etree.ElementTree


xmlstarlet+アッapplication各要素の子ノードをグループ化するための)回避策:

xmlstarlet sel -t -v "//application/@name| .//machine/text()| .//status/text()" -n input.xml 
 | awk '/Adapter/{app=$0; r=app; c=0; next}
   { if(++c==2){ c=0; print r","$0; r=app } else { r=r","$0 }}'

出力:

Adapter/Code1,123,Running
Adapter/Code1,456,Running
Adapter/Code2,123,Running
Adapter/Code2,456,Running

  • "//application/@name| .//machine/text()| .//status/text()"- 必要なノードを取得するためのXPath式

  • /Adapter/{app=$0; r=app; c=0; next}-application追加の接続のために各名前をキャプチャします。

http://xmlstar.sourceforge.net/doc/UG/xmlstarlet-ug.html

答え2

インストールするヒデルそしてxpathを使用してください。

私の考えの最善の点は次のとおりですserviceInstance

xidel f.xml -e '//serviceInstance/string-join((../../@name, machine, status),",")'
Adapter/Code1,123,Running
Adapter/Code1,456,Running
Adapter/Code2,123,Running
Adapter/Code2,456,Running

答え3

xmlstarletループを使用して各serviceInstanceノードを繰り返します。

xmlstarlet sel -t \
    -m '//application/service/serviceInstance' \
    -v '../../@name' -o , \
    -v 'machine' -o , \
    -v 'status' -nl \
    file.xml

これはserviceInstanceノードと一致し、各ノードのname親ノードの属性、machineノード値、およびstatusノー​​ド値を抽出します。これらの出力の間にはコンマ()があり、最後には-o ,改行()があります。-nl

xq以下からダウンロードすることもできます。https://kislyuk.github.io/yq/):

xq -r '
    .applications.application[] | ."@name" as $name |
    .service.serviceInstance[]  | [ $name, .machine, .status ] | @csv' file.xml

答え4

XMLツールを使用しない妥当な理由がある場合は、アプリケーションが例と同じくらい簡単な場合は、低レベルの解析を使用できます。

sed 's/<application name="\([^"]*\)">/\1/
Ta
h
d
:a
/<machine>/!d
G
N
s_.*<machine>\(.*\)</machine>\n\(.*\)\n.*<status>\(.*\)</status>.*_\2,\1,\3_' yourfile.xml

関連情報