1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-07 17:18:11 +03:00
samba-mirror/docs/smbdotconf/generate-file-list.sh
Jelmer Vernooij a4a8d71085 Makefile dependency updates
(This used to be commit d519625378)
2008-04-23 08:45:54 -05:00

9 lines
200 B
Bash
Executable File

#!/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'/>"
done
echo "</variablelist>"