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
Low-tech simple answer:
echo '' > combined.xml
grep -vh '\?products>\|> combined.xml
echo ' ' >> combined.xml
Limitations:
combined.xml will be wiped out instead of getting included.Each of these limitations can be worked around, but not all of them easily.