mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
45094bd891
We can now write docs that follow how the software on this system was built, which is much less confusing for users. Also /tmp/.winbindd has not been used for a long time. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15101 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
24 lines
308 B
Bash
Executable File
24 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
set -e
|
|
echo "<!DOCTYPE section ["
|
|
$(dirname $0)/../generate-pathconf-entities.sh
|
|
|
|
echo "]>"
|
|
|
|
DIR=.
|
|
if [ "x$1" != "x" ]; then
|
|
DIR="$1"
|
|
fi
|
|
|
|
OLD=$(pwd)
|
|
cd $DIR
|
|
|
|
echo "<section>"
|
|
for I in $(find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs); do
|
|
cat $I
|
|
done
|
|
echo "</section>"
|
|
|
|
cd $OLD
|