如何使用 grunt 合并两个 xml 文件。
我需要合并两个xml文件
一个.xml
<?xml version="1.0"?>
<module id="one">
<a>numberone</a>
</module>
B.xml
<?xml version="1.0"?>
<module id="two">
<a>numbertwo</a>
</module>
合并后的 xml 将像下面的 c.xml
<?xml version="1.0"?>
<module id="one">
<a>numberone</a>
</module>
<module id="two">
<a>numbertwo</a>
</module>