On Thu, Nov 11, 1999 at 02:53:53PM -0000, John Horne wrote:
[...] 
> I have as a test:
> 
>    for FNAME in `find /tmp -type f -maxdepth 1 -printf '"%p"\n' `; do
>           ls -l "$FNAME"
>    done

Hm... how about using 

find /tmp -type f -exec ls -l {} \;

instead? Worked with spaces when I tried it here.

HTH,

Thomas
-- 
             "Look, Ma, no obsolete quotes and plain text only!"

     Thomas Ribbrock | http://www.bigfoot.com/~kaytan | ICQ#: 15839919
   "You have to live on the edge of reality - to make your dreams come true!"


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to