XMLStarlet ( http://xmlstar.sourceforge.net/overview.php ) C ve kullanımları ile yazılmıştır libxml2
ve libxslt
.
XML belgesi verildi
<?xml version="1.0"?>
<root>
<tag>data</tag>
</root>
root
kullanılarak eklenecek bir alt düğüm
xml ed -s '/root' -t elem -n 'newtag' -v 'newdata' file.xml
hangi üretir
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>newdata</newtag>
</root>
Birçok şey ekleme ( file.xml
üstteki orijinali kullanarak ):
xml ed -s '/root' -t elem -n 'newtag' \
-s '/root/newtag' -t elem -n 'subtag' -v 'subdata' file.xml
Bu üretir
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>
<subtag>subdata</subtag>
</newtag>
</root>
Sorudaki örnek için:
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
Sonuç:
<?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>
Önceden hazırlanmış bir XML dosyasını XML'deki bir konuma ekleme:
Sorunun orijinal XML'inin bulunduğu file.xml
ve yeni distributinManagement
düğümde gitmesi gereken ek bitlerin new.xml
(ancak düğüm etiketinin kendisi değil) bulunduğu varsayılarak, kök düğüme eklemek için aşağıdakiler yapılabilirnew.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, <
ve >
karakterler gibi kaçması gereken verilerden otomatik olarak çıkacaktır . xml unesc
Bit çıkış karakterini eklenen verileri (aslında ya bir sorun olabilir de olmayabilir de bütün belge, çıkış karakterini) ve xml fo
yeniden biçimlendirmeleri sonuç XML belgesi.
Sonuç
<?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>
Bunu bu şekilde yapmaktan biraz tedirginim "ama işe yarıyor".
StackOverflow ile ilgili bu soruya da bakın: /programming/29298507/xmlstarlet-xinclude-xslt