blob: f61ac4f49ca87601b26d335eb3696ff99ee7f279 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
echo "<variablelist>"
find . -type f -name '*.xml' -mindepth 2 | sort |
while read ; do
echo "<xi:include href='$REPLY' parse='xml' xmlns:xi='http://www.w3.org/2001/XInclude'/>"
done
echo "</variablelist>"
|