Mercurial > hg > audiodb
view tests/clean.sh @ 102:9967d4dc6b1f
WS radius/track search test.
Fails currently because in fact that search is not exposed over web
services. Reworking the WS interface for queries is likely to be
necessary shortly.
author | mas01cr |
---|---|
date | Thu, 04 Oct 2007 10:19:05 +0000 |
parents | 1853beeb0521 |
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