> cd / > find . -name "*.wav" ChrisWhy not just use: locate .wav
Yes, that would work, but it assumes the locate database is up to date. I suggested find instead since it makes no assumptions. I suppose I could have suggested
> updatedb (as root) > locate .wav but in the end it amounts to the same result ;) Chris