Mercurial > hg > audiodb
view tests/clean.sh @ 126:b9f1c375f28a audiodb-debian
Merge trunk changes -r143:145 to audiodb-debian branch
(+ new debian/changelog version)
author | mas01cr |
---|---|
date | Wed, 17 Oct 2007 14:52:39 +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