John asked:
> I use Sun UNIX at work, and was trying to play a series of audio
> files using the following command:
>
> find / -name '*.au' | audioplay
I suspect that piping everything at once into audioplay is the problem.
Instead, play them one at a time:
find / -name '*.au' -exec audioplay {} \;
HTH,
Jeff