Mercurial > hg > audiodb
view tests/clean.sh @ 197:a7df1dc971ef audiodb-debian
Merge trunk changes -r259:260 into audiodb-debian branch
(+ new debian/changelog version)
author | mas01cr |
---|---|
date | Fri, 23 Nov 2007 11:18:33 +0000 |
parents | 06922d637752 |
children |
line wrap: on
line source
#! /bin/sh for file in [0-9][0-9][0-9][0-9]*; do if [ -d ${file} ]; then echo Cleaning ${file} rm -f ${file}/test* if [ -f ${file}/clean.sh ]; then (cd ${file} && sh ./clean.sh) fi fi done