~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to docs-xml/smbdotconf/generate-file-list.sh

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 "<section xmlns:xi=\"http://www.w3.org/2003/XInclude\">"
 
12
for I in `find . -mindepth 2 -type f -name '*.xml' | sort -t/ -k3 | xargs`
 
13
do 
 
14
        echo "<xi:include href='$I' parse='xml'/>"
 
15
done
 
16
                
 
17
echo "</section>"
 
18
 
 
19
cd $OLD