comparison tests/clean.sh @ 78:06922d637752 audiodb-debian

Merge trunk changes -r52:93 onto audiodb-debian branch
author mas01cr
date Mon, 01 Oct 2007 14:40:08 +0000
parents
children
comparison
equal deleted inserted replaced
37:531c627e0810 78:06922d637752
1 #! /bin/sh
2
3 for file in [0-9][0-9][0-9][0-9]*; do
4 if [ -d ${file} ]; then
5 echo Cleaning ${file}
6 rm -f ${file}/test*
7 if [ -f ${file}/clean.sh ]; then
8 (cd ${file} && sh ./clean.sh)
9 fi
10 fi
11 done