tutorial scripts

This commit is contained in:
mattijs
2008-06-12 19:32:10 +01:00
parent adcce409ab
commit 91c2d7743b
60 changed files with 1374 additions and 298 deletions

View File

@ -43,23 +43,10 @@ echo ""
for application in *
do
if [ -d "$application" ]
if [ -d $application ]
then
cd $application
if [ -f "Allclean" ]
then
./Allclean
else
for case in *
do
if [ -d "$case" ]
then
cleanCase $case
fi
done
fi
cd ..
fi
(cd $application && ../cleanAll)
fi
done
#------------------------------------------------------------------------------