On Tue, Aug 07, 2007 at 04:03:05PM -0700, Andrew Sackville-West wrote: > > So what's the right way to do this? I hacked one together the other > day: > > IFS=$'\t\n'; for i in `find . -iname \*m4a`; do faad... blah blah blah > > and I knew it was a hack because setting $IFS just seems > bad... possible unintended consquences, but it worked. >
I have seen something like the following: find | while read FILE; do echo "$FILE" done -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]