|
If you're not set on using find, you can use zsh's recursive globbing in many of the situations where this tip applies. Globbing doesn't suffer from word-split problems unless you use crazy flags that you would never figure out and won't type by accident. The equivalent of the above find-pipe-while is: for wav in **/*.wav(.); lame -h $wav $wav:r.mp3 |