mktreeidx.sh

 

###
###
###
###
###
###
###
###

CWD=`pwd`
PATH=/usr/local/bin:$PATH
DEPOT=/usr/tomcat/webapps/ROOT/depot/dev
cd $DEPOT


for xdir in `find . -type d -print` 
do

    echo $xdir

   
    cd $xdir
    treeidx.sh
    cp tree.html index.html 
    cd $DEPOT

done