#!/bin/sh

for voice in * ; do
	if test -f $voice/0.au ; then
		echo "Preparing $voice.."
		tar -czf $voice.tar.gz $voice
	fi
done

