repo.or.cz
/
samba4-gss.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ctdb-server: Remove duplicate logic
[samba4-gss.git]
/
docs-xml
/
smbdotconf
/
generate-file-list.sh
blob
dd981b3c4720b343f6aa3901877e71b0960b56c3
1
#!/bin/sh
2
#
3
set -e
4
echo
"<!DOCTYPE section ["
5
$
(
dirname
$0
)/
..
/
generate-pathconf-entities.sh
6
7
echo
"]>"
8
9
DIR
=
.
10
if
[
"x
$1
"
!=
"x"
];
then
11
DIR
=
"
$1
"
12
fi
13
14
OLD
=
$
(
pwd
)
15
cd
$DIR
16
17
echo
"<section>"
18
for
I
in
$
(
find
.
-mindepth
2
-type
f
-name
'*.xml'
|
sort
-t
/
-k3
|
xargs
);
do
19
cat
$I
20
done
21
echo
"</section>"
22
23
cd
$OLD