XMLStarlet ( http://xmlstar.sourceforge.net/overview.php ) è scritto in C e usa libxml2
e libxslt
.
Dato il documento XML
<?xml version="1.0"?>
<root>
<tag>data</tag>
</root>
è root
possibile inserire un nodo secondario in
xml ed -s '/root' -t elem -n 'newtag' -v 'newdata' file.xml
che produce
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>newdata</newtag>
</root>
Inserendo molte cose (usando l'originale file.xml
in alto qui):
xml ed -s '/root' -t elem -n 'newtag' \
-s '/root/newtag' -t elem -n 'subtag' -v 'subdata' file.xml
Questo produce
<?xml version="1.0"?>
<root>
<tag>data</tag>
<newtag>
<subtag>subdata</subtag>
</newtag>
</root>
Per l'esempio nella domanda:
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
Risultato:
<?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>
Inserimento di un file XML precedentemente preparato in una posizione nell'XML:
Supponendo che l'XML originale della domanda sia presente file.xml
e che siano presenti i bit aggiuntivi che dovrebbero andare nel nuovo distributinManagement
nodo new.xml
(ma non il tag del nodo stesso), si potrebbe fare quanto segue per inserire new.xml
nel nodo radice:
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 sfuggirà automaticamente ai dati che devono essere salvati, come <
e >
caratteri. Il xml unesc
bit annulla l' escaping dei dati inseriti (in realtà elimina l'escaping dell'intero documento, che può essere o meno un problema) e xml fo
riformatta il documento XML risultante.
Il risultato è
<?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>
Sono un po 'a disagio nel farlo in questo modo, "ma funziona".
Vedi anche questa domanda correlata su StackOverflow: /programming/29298507/xmlstarlet-xinclude-xslt