mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
9eb45e211c
(This used to be commit ec0bbb6c2e
)
15 lines
248 B
Bash
Executable File
15 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
DIR=.
|
|
if [ "x$1" != "x" ]
|
|
then
|
|
DIR="$1"
|
|
fi
|
|
|
|
echo "<variablelist>"
|
|
for I in `find $DIR -type f -name '*.xml' -mindepth 2 | sort -t/ -k3 | xargs`
|
|
do
|
|
echo "<xi:include href='$I' parse='xml'/>"
|
|
done
|
|
|
|
echo "</variablelist>"
|