Subject: Re: This has GOT to be a bug in ksh...
To: ali \(Anders Lindgren\) <dat94ali@ludat.lth.se>
From: Ben Collver <collver1@attbi.com>
List: netbsd-users
Date: 06/17/2002 08:40:50
> $ touch "Berra äter ost" "Lisa visar rattarna"
> $ for f in `find . -type f | sed -e 's/\(.*\)/"\1"/'` ; do echo $f ; done
> "./Berra
> äter
> ost"
> "./Lisa
> visar
> rattarna"
> $

Oh yeah, I've run into this before.  I never found a fix but here is a
slow workaround.

find . -type f | (while read f; do echo "$f"; done)

Ben