blob: 84c3d5d2fc401eeb8a2d57b85587be1e528c53ab (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
echo "<variablelist>"
for I in `find . -type f -name '*.xml' -mindepth 2 | sort -t/ -k3 | xargs`
do
echo "<xi:include href='$I' parse='xml' xmlns:xi='http://www.w3.org/2001/XInclude'/>"
done
echo "</variablelist>"
|