I have several xml files. They all have the same structure, but were splitted due to file size. So, let's say I have A.xml
, B.xml
, C.xml
and D.xml
and want to combine/merge them to combined.xml
, using a command line tool.
A.xml
<products>
<product id="1234"></product>
...
</products>
B.xml
<products>
<product id="5678"></product>
...
</products>
etc.