repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated entry of samba-vscan
[Samba.git]
/
docs
/
smbdotconf
/
generate-file-list.sh
blob
089733246316f99d5281b763489e32c205a0f387
1
#!/bin/sh
2
DIR
=
.
3
if
[
"x
$1
"
!=
"x"
]
4
then
5
DIR
=
"
$1
"
6
fi
7
8
OLD
=
`pwd`
9
cd
$DIR
10
11
echo
"<variablelist xmlns:xi=
\"
http://www.w3.org/2003/XInclude
\"
>"
12
for
I
in
`find . -type f -name '*.xml' -mindepth 2 | sort -t/ -k3 | xargs`
13
do
14
echo
"<xi:include href='
$I
' parse='xml'/>"
15
done
16
17
echo
"</variablelist>"
18
19
cd
$OLD