XMLStarlet(http://xmlstar.sourceforge.net/overview.php)はCで書かれており、およびを使用libxml2
しlibxslt
ます。
XMLドキュメントを考える
<?xml version="1.0"?>
<root>
<tag>data</tag>
</root>
root
を使用して挿入されるサブノード
xml ed -s '/root' -t elem -n 'newtag' -v 'newdata' file.xml
生成する
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>newdata</newtag>
</root>
多くのものを挿入する(file.xml
ここの上部にあるオリジナルを使用):
xml ed -s '/root' -t elem -n 'newtag' \
-s '/root/newtag' -t elem -n 'subtag' -v 'subdata' file.xml
これにより
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>
<subtag>subdata</subtag>
</newtag>
</root>
質問の例では:
xml ed -N x="http://maven.apache.org/POM/4.0.0" \
-s '/x:project' -t elem -n 'distributionManagement' \
-s '/x:project/distributionManagement' -t elem -n 'repository' \
-s '/x:project/distributionManagement/repository' -t elem -n 'id' \
-v 'private-releases' \
-s '/x:project/distributionManagement/repository' -t elem -n 'url' \
-v 'https://my.private.server.com/nexus/repository/maven-releases/' \
file.xml
結果:
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- a lot of other tags-->
<distributionManagement>
<repository>
<id>private-releases</id>
<url>https://my.private.server.com/nexus/repository/maven-releases/</url>
</repository>
</distributionManagement>
</project>
以前に準備したXMLファイルをXML内の場所に挿入します。
質問の元のXMLがありfile.xml
、新しいdistributinManagement
ノードに追加する必要がある追加のビットが含まれているnew.xml
(ただし、ノードタグ自体は含まれていない)場合、次のようにnew.xml
してルートノードに挿入できます。
xml ed -N x="http://maven.apache.org/POM/4.0.0" \
-s '/x:project' -t elem -n 'distributionManagement' \
-v "$(<new.xml)" file.xml | xml unesc | xml fo
XMLStarletは自動的にエスケープする必要のあるデータ、などのエスケープされます<
と>
文字が。このxml unesc
ビットは、挿入されたデータのエスケープを解除し(実際にはドキュメント全体のエスケープを解除します。これは問題となる場合とそうでない場合があります)、xml fo
結果のXMLドキュメントを再フォーマットします。
結果は
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- a lot of other tags-->
<distributionManagement>
<repository>
<id>private-releases</id>
<url>https://my.private.server.com/nexus/repository/maven-releases/</url>
</repository>
</distributionManagement>
</project>
私はこのようにそれをすることについて少し不安です、しかし「それはうまくいきます」。
StackOverflowでこの関連質問も参照してください:https : //stackoverflow.com/questions/29298507/xmlstarlet-xinclude-xslt